Hi, I'm using "Jira Service Management". The customer would like to get an email notifications, which includes the full history of comments related to this incident. Are there any option to achieve this?
Hi @Simon Zunic
You could create an automation rule based upon a manual trigger.
Then add an email action where in the body you specify the smart value, {{issue.comments}} to pull all comments from that issue.
Hi Marc, sorry for the late response and thank you for your help. It works! Final version of the code is as follows:
{{issue.description}}
{{#issue.comments}}
**Author:** {{author.displayName}}
**Date:** {{created}}
{{body}}
---
{{/issue.comments}}
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you so much Simon, really appreciate it, Is there any way to do run this rule only when agent adds the comment not the customer/reporter?
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.