Hi,
what i am asking is I have written a script Listener for automatic due notification and i have done it but the problem is i missed something in that and the notification i am getting like this
1. Issue key: DPMZ
2. asignee: BCC
3. Due date: BBb
4.Summary: DDDD
But i need the notification mail like this
1. Issue key: DPMZ
2. assignee: BCC
3. Due date: BBb
4.Summary: DDDD
while clicking on the issue key it will navigate me to the issue.
regards
Uday
I believe email is sent in a html body, so can you define the <a href> tag and append the issue key there with a default url such as "https://mydomain.jira.com/browse/${issueKey}". So once you receive the notification, it can have the link embedded?
Hi Prince
Thanks for your response, Could you please elaborate this and tell me how to write the script listners and also url
Regards
Uday
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Something in this nature, you need to do in the email template you're using to send.
final emailTemplate = """
Hello user
1. Issue key: <a href="https://mydomain.jira.com/browse/${issueKey}" target="_blank">${issueKey}</a>
2. asignee: ${asignee}
3. Due date: ${dueDate}
4.Summary: ${summary}
"""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.