Dear Community,
It is probably a stupide question, but I am trying to set up an automatic rule that will trigger a weekly email with a list of tickets which should include:
- Issue key= {{key}} = OK
- Components= {{components.name}} = KO
- Status= {{status.name}} = OK
- Update date= {{updated.mediumDate}} = OK
- Summary = {{summary}}
The rule itself, is working fine, but I am not receiving any value for the [components field].
I tried different typo:
issue.components.first.name
components.first.name
components
component
component.name
components.name
but, still not working ;( 
Thanks for your help!
Oh the HTML
<table style="width:90%;border:1px solid black;">
<tr style="height:30px;">
<th style="border:1px solid black;vertical-align:bottom;width:80px;">Issue Key</th>
<th style="border:1px solid black;vertical-align:bottom;width:80px;">Components</th>
<th style="border:1px solid black;vertical-align:bottom;width:80px;">Status</th>
<th style="border:1px solid black;vertical-align:bottom;width:80px;">UpdatedDate</th>
<th style="border:1px solid black;vertical-align:bottom;width:300px;">Summary</th>
</tr>
{{#lookupIssues}}
<tr>
<td style="border:1px solid black;vertical-align:top;width:80px;"><a href={{url}}> {{key}}</a></td>
<td style="border:1px solid black;vertical-align:top;width:80px;"> {{components.name}}</td>
<td style="border:1px solid black;vertical-align:top;width:80px;"> {{status.name}}</td>
<td style="border:1px solid black;vertical-align:top;width:80px;"> {{updated.mediumDate}}</td>
<td style="border:1px solid black;vertical-align:top;width:300px;"> {{summary}}</td>
</tr>
{{/}}
</table>