Can we configure issue details in the email subject?

Suresh April 21, 2013

Hi All,

Below thinngs

1) Email Subject: Template is <Issue Type> : <Issue Summary> - <Issue ID> | < Current Status>

For Example: Inquiry : Request for details - IDPJ-388 | In Progress

2) Can the CC section for recipient list be configured?

Thankyou,

2 answers

3 votes
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 21, 2013

Yes it is possible to customize email subject

1) Under the directory JIRA_INSTALLATION\atlassian-jira\WEB-INF\classes\templates\email\subject

There are velocity template for each issue event . You can modify the required templates or all of them if you want the format of the template same for all issue events (i.e issue created , issue resolved , etc. )

in your case the content of the template should be similar to

#disable_html_escaping()
$issue.getIssueType() : $issue.summary - $issue.key | $issue.getStatus()

Also refer https://confluence.atlassian.com/display/JIRA/Customising+Email+Content

2) You can configure to whom the email should be sent from the Notification scheme . (Not sure about the CC section )

Sameera Shaakunthala [inactive]
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 23, 2013

Just noticed that getStatus() is depreciated. Use getStatusObject() instead.

$issue.getStatusObject().getName()

0 votes
kumar Koppisetti March 2, 2015

how can we add fix version in the subject of an email

Suggest an answer

Log in or Sign up to answer