How to Create Clickable Jira Issue Links in HTML Emails in Dataiku Scenario

Chethan
Chethan Registered Posts: 2 ✭✭

I am working on automating the generation of email notifications within Dataiku, where the email body includes a table of Jira tickets. Each ticket has an "Issue Key" which I need to display as a clickable link in the email.

The URL format for each ticket is: https://adsretailjira.atlassian.net/browse/{ISSUE_KEY}.

I already have the HTML structure for my email, and I want to make sure that the issue keys in the tables are dynamically populated as clickable links

Hello,

<p>Here are the tickets that are either past their due date or flagged, or do not have a due date.<br></p>

<p>
<style>
table, td, th {
border: 1px solid black;
}

table {
border-collapse: collapse;
width: 100%;
}

th {
text-align: center;
background-color: #e4c9a8;
}

td {
text-align: center;
}
</style>

<h3>Past Due Tickets:</h3>
<table>
${Past_Due_Tickets}
</table>

<h3>Tickets with No Due Date:</h3>
<table>
${No_Due_Date_Tickets}
</table>

<h3>Flagged Tickets:</h3>
<table>
${Flagged_Tickets}
</table>

<br>
image.png

Any help or pointers will be greatly appreciated!

Thanks in advance!

Answers

Setup Info
    Tags
      Help me…