You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi,
Using ScriptRunner listner - possible to get the issueCreated mail format and send it to other mailBox?
Unfortunately, not possible at the moment. However, you can design the issue creation email template to the similar as JIRA default email template or with your own custom design.
For example, put the Email format to HTML:
Apply the sample script below in the Email Template field:
Hey,
<% String baseUrl = com.atlassian.jira.component.ComponentAccessor.applicationProperties.getString("jira.baseurl") %>
<% baseUrl = baseUrl+"/browse/"+issue.key%>
<br>
<br>
The ${issue.issueType.name} <a href="<%out <<baseUrl %>">${issue.key}</a> has been Created.
<br>
<br>
Summary: ${issue.summary}
<br>
<br>
Regards,
<br>${issue.reporter?.displayName}
At the results, you will get something like this:
You can beautify the email format that suit your needs. Also, you can pull more fields information to display in the email template.
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.