Hi,
i'm currently testing the Addon and it is rellay nice. However, i was not able to get the following case done, that i need.
I'd like to sent an e-mail when a sprint starts. So far this is no problem, but i'd like to send only one mail with a list of issues.
I saw the option to only send one mail instead of a mail for each issue, but how can i reference the issues in the mail? is there some kind of loop?
Somehting like:
{{for issue in issues}}
{{issue.key}}
{{endfor}}
?
Thanks in advance!
Best regards,
Oliver
Hey Oliver,
thanks for your message here. Glad you are enjoying using Automation for Jira so far!
Assuming you are a Server user (as the answer below won't work for Cloud users), you can indeed make it so you only receive one email.
In the action 'send email' you will see an option called 'Execute in bulk'
From there, you were pretty close with your smart values. You could use something like:
{{#issues}}{{key}}{{/}}
This will essentially go over each issue in the list and print out the key. You could also do the same for summary, etc
{{#issues}}{{summary}}{{/}}
Let me know if you have any issues with this.
Cheers,
John
Hi John, thanks for your reply! Is this documented somewhere? Cause i read through the docs but did not find it.
Thanks again,
best regards,
Oliver
BTW: We wil buy the Addon :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Oliver,
Thanks in advance for buying the add-on!
We do have docs about smart values here:
https://docs.codebarrel.io/automation/smart-fields/extracting-issue-data.html
However, there are almost unlimited use cases so sometimes it can be tricky with smart values to find exactly what you need. We are always trying to add new and better docs though so will add this to my list!
Cheers,
John
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.