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.