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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello.
I need to send a custom email to the Reviewer (custom field) when an issue transitions to an status. I am already creating the post-function tool. The thing is, I need the email to have the link to that issue, so the reviewer can easily read it and then click on it and open Jira immediately. I don't know how to code that. Can anybody help me?
Hey @Eimy Jimenez ,
If you have the Send a custom email [ScriptRunner] post-function configured, below is a sample script that you can put into the Email template field:-
Dear ${issue.reporter?.displayName}, <br><br>
This issue has been transitioned to ${issue.status.name}.
View the issue <a href="http://localhost:8080/browse/${issue.key}">here</a>. <br><br>
Regards.
The output would be something like this:-
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.