How do I properly check work item type in the e-mail Message at Me template?
Hello,
I have the following in my message at me email template, and it doesn't throw any syntax errors. How do I properly check against the work item type?
<tr>
<td>#set ($v = ${workItem.type}) #if ($v.toString().equalsIgnoreCase("Defect")) Test #end</td>
</tr>
I can't find any documentation on this.