Hi,
I'm trying to send a custom email to the assignee\reporter, the email is being sent but it only shows the subject, not the message.
I use the template that ScriptRunner suggest:
def fields = get('/rest/api/2/field')
.asObject(List)
.body as List<Map>
def customFieldId = fields.find { it.name == 'Category' }.id as String
def customFieldValue = (issue.fields[customFieldId] as Map)?.value
"""Dear ${issue.fields.assignee?.displayName},
The ${issue.fields.issuetype.name} ${issue.key} with priority ${issue.fields.priority?.name} has been assigned to you.
Description: ${issue.fields.description}
Custom field value: ${customFieldValue}
Regards,
${issue.fields.reporter?.displayName}"""
And I tried to modify the text but nothing works. What is wrong? How can I make the text appear in the email's body?
Hi @inna grin
I guess you are using the post function where the send email will use the Jira email templates.
What you can try is creating a listener and use the script here. You will also find this script in the examples. This script should let you send an email with custom subject and body. The mail will not be sent if the changes are made by the same person.
It is using the following REST end point also mentioned here.
POST /rest/api/3/issue/{issueIdOrKey}/notify
I hope it helps.
Ravi
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.