Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Configuring daily task reminder to user

Ouioui Zhou
Contributor
March 7, 2022

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.

 

擷取.PNG

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.

擷取.PNG

Is there anyone who could help me amend the codes?

Thank you so much!

 

1 answer

1 accepted

4 votes
Answer accepted
Mohamed Benziane
Community Champion
March 7, 2022

Hi @Ouioui Zhou 

Can you try this :

<table>
{{#lookupIssues}}
<tr>
<td>{{key}}</td>
<td>{{summary}}</td>
</tr>
{{/}}
</table>
Ouioui Zhou
Contributor
March 7, 2022

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. 

Mohamed Benziane
Community Champion
March 7, 2022

You can use the href html tag like this

 

<table>
{{#lookupIssues}}
<tr>
<td> <a href={{url}}>{{key}}</a> </td>
<td>{{summary}}</td>
</tr>
{{/}}
</table>
Like Ouioui Zhou likes this
Ouioui Zhou
Contributor
March 7, 2022

Got it. great thanks!

Suggest an answer

Log in or Sign up to answer