You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
I am trying to send an email to a group of users with an information table. This table rows are created by an iteration on issues. I have not problems with other fields, but just withe a list one I do.
My code is
<b>{{lookupIssues.size}} Incidencias Abiertas (OTROS):</b>
<table width="100%" max-width="600px" cellborder="0" cellspacing="0" cellpadding="5px" align="left">
{{#lookupIssues}}
<tr>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff"><A HREF="{{url}}"> {{key}}</A></td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff">{{created.format("dd/MM/yyyy")}}</td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff">{{status.name}}</td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff">{{summary}} </td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff">{{assignee.displayName}}</td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px" BGCOLOR="#ffffff">{{reporter.displayName}}</td>
<td valign="middle" style="border: 1px solid #d8d8d8; color:#444444; font-family: Arial, sans-serif; font-size:12px; padding:10px"
BGCOLOR="#ffffff">{{issue.Acciones creación usuarios}}
</td>
</tr>
{{/}}
where {{issue.Acciones creación usuarios}} is a checkbox list i want to show in the email cell.
I have no problems with the rest, only the checkbox
Can you try the following.
Replace this {{issue.Acciones creación usuarios}} with {{issue.customfield_xxxxx}} where xxxxx is the custom field ID.
Thank you Marc for your response. The result is the same. I get the values in the body, but no in the cells loop.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So as you mentioned, It might that this doesn't work in a loop.
I would advise raise a support request at Atlassian Support.
The only other thing I could think of is to create a variable where you store the checkbox content and use that variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Marc, I also tried it and the result was the same copying the information in a text variable. I think it is how Jira manage the object issue.xxx in a loop .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh! missunderstanding. I did not mean it was resolved! it is not, I meant I used to store the list value in a text field, but it did not work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would advise raise a support request at Atlassian Support.
They might have the answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As note, {{issue.Acciones creación usuarios}} in printed when it is out of the iteration loop with the data of the issue that run the automation run
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.