Running JIRA 5.1.6. I'm trying to get an issue's Due Date, if present, added to the email notifications. I have added the following code to WEB-INF/classes/templates/email/text/issuecreated.vm:
#if ($issue.getDueDate())
$stringUtils.leftPad($i18n.getText("issue.field.duedate"), $padSize): $dateformatter.formatDMYHMS($issue.getDueDate())
#end
That works for issues being newly created. However, I can't seem to get the field to show up on any other email notification (commented, edited, etc.). I've added the same block of code to WEB-INF/classes/templates/email/text/includes/issuesummary.vm, but the Due Date never appears.
Any help greatly appreciated.