Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Projetct Automation

maxime grenier April 4, 2023

Hi, I am looking to make notifications in Project automation. In the text of my email I want to add the ticket number. However, I want the ticket number to be clickable. I don't know how to do it.

Here's how I've written so far.

Nouvelle demande d'accès
{{issue.key}}

2 answers

1 accepted

0 votes
Answer accepted
Allen Culpepper
Contributor
April 4, 2023

There are a few ways..

Set email to "send as html" also.

<a href="{{url}}" target="_blank">{{key}}</a>

I do mine as below but thats in a webhook, not sure if same format work for an email.
{
"markdown": "New Issue Created for {{issue."Submitter Email"}}\n **Issue**: [{{issue.key}}](https://<URL>/browse/{{issue.key}}) \n **Request Type**: {{issue."Request Type"}} \n **Status**: {{issue.Status.name}}\n\n ***Please click on issue link to add comments***."
}
maxime grenier April 4, 2023

Thank you very much for your help!

 

Maxime

0 votes
Dan Breyen
Community Champion
April 5, 2023

@maxime grenier you can also add this to the content of your message.  

<a href="{{issue.toUrl}}">{{issue.summary}}</a>

Suggest an answer

Log in or Sign up to answer