Hi comunity!
We need send a mail with the stories from a started sprint, so I get the list with "lookupIssues" in automation, but when I tried create the mail with hmtl its result as a sentence without urls:
H1, H2, H3, ....
I want:
H1
H2
H2
I shared my code:
Hello can you try this:
<html>
<body>
<h2>Current Sprint Stories</h2>
<p>Below are the links to the stories in the started sprint:</p>
<ul>
{{#lookupIssues}}
<li><a href="https://your-jira-instance-url/browse/{{key}}">{{key}} - {{summary}}</a></li>
{{/lookupIssues}}
</ul>
<p>Regards,<br>Your Team</p>
</body>
</html>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.