Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

ScriptRunner custom email doesn't show the message

inna grin
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 29, 2020

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? 

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Ravi Sagar _Sparxsys_
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.
January 3, 2021

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 

TAGS
AUG Leaders

Atlassian Community Events