Hi All,
This is my email alert HTML body as below :
<table width="100%" border="0" cellpadding="10" cellspacing="0" style="background-color:#f9f9f9;border:none;line-height:1.2"><tbody>
<tr style="line-height:1.5"><th colspan="2" style="background-color:#e6e6e6">日志標題</th></tr>
<tr><td width="200px">主旨</td><td>${event_definition_title}</td></tr>
<tr><td>描述</td><td>${event_definition_description}</td></tr>
</tbody></table>
<br /><table width="100%" border="0" cellpadding="10" cellspacing="0" style="background-color:#f9f9f9;border:none;line-height:1.2"><tbody>
<tr><th colspan="2" style="background-color:#e6e6e6;line-height:1.5">日志信息</th></tr>
<tr><td width="200px">時間</td><td>${foreach backlog message}${message.timestamp}${end}</td></tr>
<tr><td>服務器</td><td>${foreach backlog message}${message.source}${end}</td></tr>
</tbody></table>
<br /><table width="100%" border="0" cellpadding="10" cellspacing="0" style="background-color:#f9f9f9;border:none;line-height:1.2"><tbody>
<tr><th style="background-color:#e6e6e6;line-height:1.5">日志內容</th></tr>
${foreach backlog message}
<tr><td>${message.message}</td></tr>
${end}
<br /><table width="100%" border="0" cellpadding="10" cellspacing="0" style="background-color:#f9f9f9;border:none;line-height:1.2"><tbody>
<tr><th style="background-color:#e6e6e6;line-height:1.5">完整日誌</th></tr>
${foreach backlog message}
<tr><td>${message.full_message}</td></tr>
${end}
</tbody></table>
The field message can show in the mail alert, but the “full_message” is not.
Are there any wrong setting in my HTML body?