How to add priority value to mail notification subject?

Danila Trushin April 22, 2013

Hi!

I'm trying to add priroity of issue to the mail notification subject. According to this article I added the following string to the *.vm files (in <jira-install> /atlassian-jira/WEB-INF/classes/templates/email/subject):

$issue.priority

So complete .vm file looks like

#disable_html_escaping()

($issue.key) $issue.priority: $issue.summary

But in e-mail I've got this:

[GenericEntity:Priority][id,4][description,Minor loss of function, or other problem where easy workaround is present.][sequence,4][statusColor,#006600][name,Minor][iconurl,/images/icons/priorities/minor.png]

I need to receive only a priority value like "Minor" or "Major" etc. How to approach this result?

1 answer

1 accepted

0 votes
Answer accepted
Mizan
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 22, 2013

Try $issue.priority.name OR $issue.getPriority().name

Danila Trushin April 22, 2013

Thanks a lot! $issue.priority.name works!

Suggest an answer

Log in or Sign up to answer