Hi there, i would like to configure an daily email notification to myself for my open task list.
I set the automation rules as below.
Email Content (refer to the https://www.atlassian.com/software/jira/automation-template-library/rules#/rule/1357105)
<table>
{{#issues}}
<tr>
<td>{{key}}</td>
<td>{{summary}}</td>
</tr>
{{/#}}
</table>
However the rule got some errors as below.
Is there anyone who could help me amend the codes?
Thank you so much!
Hi @Ouioui Zhou
Can you try this :
<table>
{{#lookupIssues}}
<tr>
<td>{{key}}</td>
<td>{{summary}}</td>
</tr>
{{/}}
</table>
hi @Mohamed Benziane it works!!! great thanks. btw do you know whether i can make the issue key clickable? Click to open the issue ticket.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the href html tag like this
<table>
{{#lookupIssues}}
<tr>
<td> <a href={{url}}>{{key}}</a> </td>
<td>{{summary}}</td>
</tr>
{{/}}
</table>
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.