Hello,
i would like to create an automation which is sending a mail with a table.
In this table there is issue key, Title, and all the issue links of the ticket in th first column.
Exemple
The table in the mail is made like this in html
<br>
<table border="1" >
<tr>
<th>Key</th>
<th>Title</th>
<th>Links</th>
</tr>
{{#lookupIssues}}
<tr>
<td> <a href="https://privateURLjiracloud/custom/16/{{key}}">{{key}}</td>
<td>{{summary}}</td>
<td>????????</td>
</tr>
{{/}}
</table>
<br>
I can't find the smart value for colomn Links to make is work. ( i add LINKS in the photo with paint) The table have no result for the Links Colomn
My automation is like this:
Could you please help me?
Thanks
Hello @Nicolas GUILLOU
The smart value you're looking for is {{issuelinks}}.
Let us know if this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.