Hi, I'm looking to create an email which does a lookup issues:
status != "done" and duedate = now()
Then creates links to the tasks found in the lookup so they can be emailed out. I am not certain how to take the data I'm returning and get it to format the tasks to include the links, rather than just plain text. Full-on newbie with JQL and smart values.
Any help would be appreciated.
Welcome to the community @EH !
So I've done this but instead of table I generate a bullet point list in an email, I'll include my email formatting below so you can use it as a reference
Good morning, the following tasks are due today
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}} : {{Summary}}</a></li>{{/}}
</ul>
That worked perfectly, thanks Christopher! Interesting formatting.
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.