Hello - I am looking to use Daily Automation to send a daily email of our open Jira Tickets that are marked as high priority.
I was provided the below syntax - so in my email I get a bulleted list of all Ticket Keys (that meet the criteria I specified in my JQL) - which are also hyperlinked.
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}}</a>]</li>{{/}}
</ul>
However, I'd like to add additional details for each ticket. For example...
* TICKET-123 | <<Priority>> | <<Created Date>> | <<Status>>
* TICKET-124 | <<Priority>> | <<Created Date>> | <<Status>>
The items in <<>> represent the fields I'd like to pull into my bulleted list for each ticket
Hey Emily,
Try using this:
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}}</a>] {{issue.priority}} | {{issue.created}} | {{issue.status}}</li>{{/}}
</ul>
Hi, Unfortunately that did not work. It returned the following output:
And I confirmed I used the correct field names & they are populated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, that's not very nice of it to do that to you. ;-)
I tested the below and got good results dropping the issue. in front. The documentation does not include priority, so I dropped that out to. I will ask them about that.
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}} </a> | {{created.longDate}} | {{status.name}}</li>
{{/}}
</ul>
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.