Links
TrackStudio Enterprise 3.1
Customizing E-Mail Notification Templates

This topic describes how to customize e-mail notification template.

To customize e-mail notification template:

  1. Click the User Management -> E-Mail Templates tab.
  2. Choose an existing e-mail template or create a new one.
  3. Click E-Mail Templates -> Edit tab.
  4. Fill in the template properties.
  5. Click the Save button.

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>
Copyright (c) 2002-2005. All rights reserved.