This topic describes how to customize e-mail notification template.
To customize e-mail notification template:
To receive text e-mail notifications like
Dear [customer name], Your task has been updated. It now has the current [Task Status]. [Message text for only the message that fired this notification] You may find more additional information on your project by accessing the following link [TrackStudio URL link to task/message tab] Thanks, [Handler Name]
use the following template
<#if (task.getSubmitter()?exists)>
Dear ${task.getSubmitter().getName()},
</#if>
Your task has been updated.
It now has the current ${task.getStatus().getName()}.
<#if (msglist?exists && msglist?size>0)>
<#assign msg = msglist?last>
<#if msg.getDescription()?exists>${msg.getTextDescription()}</#if>
</#if>
You may find more additional information on your project by accessing the following link
${addval.tasklink}
Thanks,
<#if (task.getHandler()?exists)>
${task.getHandler().getName()}
</#if>