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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Everyone,
In this tutorial we will show you how you can use automation to send customized email notifications when issues are due. Automatically scheduling tasks will reduce manual work for your team, but also ensures consistency and reliability in your workflows.
For example, if a support engineer has not completed a task by the due date, you can configure a rule to automatically send them a reminder to take an action on the ticket. You can also send a consolidated list of all tickets that are due to the team lead with all the relevant information.
In the first rule, we will be sending daily emails to the assignees of the jira issues when the due date of an issue has passed.
JQL to get tickets with past due date: duedate <now() and status != done
Send Email Action Template:
Subject:
Response Required: {{issue.key}} - {{issue.summary}}
Content:
<p>Hi {{assignee.displayName}},</p>
<p>A quick reminder that the ticket {{issue.key}} has passed its due date on <strong>{{issue.dueDate}}</strong>.</p>
<p>Please action your ticket as soon as possible.</p>
<p>Summary:</p>
<ul>
<li><strong>Title: </strong>{{issue.summary}}</li>
<li><strong>Status:</strong> {{issue.status.name}}</li>
<li><strong>Due Date:</strong> {{issue.dueDate}}</li>
<li><strong>Url:</strong> <a href="{{issue.url}}">{{issue.url}}</a></li>
</ul>
<p>Thank You,</p>
<p>Project XYZ Administrator</p>
In the second rule, we will be sending a daily report to an administrator that summarizes all the issues that are due with key information.
Lookup Issues Action:
JQL: project = xyz and issuetype = bug and duedate <now() and status != done
Send Email Action Template:
Subject:
Tickets Due on {{now.jiraDate}}
Content:
<p>Hi team - we've got the following issues that require immediate action:</p>
{{#lookupIssues}}
</ul>
<li><strong> Key: </strong>{{key}}</li>
<li><strong> Summary: </strong>{{summary}}</li>
<li><strong> Status: </strong>{{status.name}}</li>
<li><strong> URL: </strong><a href="{{url}}">{{url}}</a></li>
<li><strong> Assignee: </strong>{{assignee.displayName}}</li>
</ul>
<br>
{{/}}
<p>Thank You,</p>
<p>Project XYZ Administrator</p>
Click Here to view the video tutorial.
Thanks,
Eli Solutions
Eli Solutions Team -Eli Solutions-
Marketplace Partner
2 comments