How to access recipient attributes in Velocity email template

Charlie Misonne
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 7, 2015

I have some custom email templates in JIRA 6.4.12

One of my predecessors edited the issuementioned template with following attributes:

${recipient.name}
${recipient.displayName}

Those attributes are not working and are printed as text. issue.key for example does work.

Is there a 'new' way for accessing the name of the email recipient?

 

according to this page it should work, right? https://developer.atlassian.com/jiradev/jira-platform/jira-architecture/jira-templates-and-jsps/velocity-context-for-email-templates

1 answer

0 votes
Dalectric
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 14, 2016

Got this working with 

$recipient.getName()
$recipient.getDisplayName()
Charlie Misonne
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 20, 2016

that works in most of the templates but not in issuementioned.vm

I'm now using "currentUser()" in my jql link instead of the actual username

Suggest an answer

Log in or Sign up to answer