HI, I am using an automation to send an email. Part of the automation and email is to insert the issue comments into the email. The issue have multiple comments. When Jira sends the email, the comments are all strung together and are separated by comas. I would like each comment to be separated by a page break (enter keystroke). How would I do this? Thank you.
Hi @Rich Nuzzi
The comments field is a list of comments; you may use the iterator functions to do this: https://support.atlassian.com/jira-software-cloud/docs/smart-values-lists/#Smartvalueslists-Combinedfunctionexamples
For example to show then as a bulleted list:
Here are the comments:
{{#issue.comments}}
* {{author.displayName}}: {{body}}
{{/}}
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Rich, I am glad to learn that helped. Please consider marking this question as answered. That will help others in the community find solutions faster. Thanks!
__Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.