Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I am looking to create an automation in Jira that sends an email, on a scheduled basis, of all unresolved issues associated with an epic. Is this possible using Jira Automation?
As an example:
Epic Key - Epic Name
Epic Key - Epic Name
I'm not sure if it's possible to group issues by Epics in an email. You can try this:
<table>
<tbody>
<tr>
<th>Epic Key</th>
<th>Epic Name</th>
<th>Issue Key</th>
<th>Issue Summary</th>
<th>Issue Status</th>
</tr>
{{#lookupIssues}}
<tr>
<td>{{epic.key}}</td>
<td>{{epic.Epic Name}}</td>
<td>{{key}}</td>
<td>{{summary}}</td>
<td>{{status.name}}</td>
</tr>
{{/}}
</tbody>
</table>
Please uncheck the option Convert line breaks to HTML line breaks in the More options section.
This rule will send issues data in a table sorted by Epic link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.