Hi There,
I am looking to insert the issue key as a link in the automated response. However, I cannot find the issue key as a link.
Below is the automated test which we receive whenever a customer creates a request.
"Thank you for getting in touch.
This is an automated response to your contact for help regarding Not enough traction in sand
.There is no need to reply to this message right now. Your ticket has been assigned an ID of BB-8.
Please include the string BB-8 in the subject line of all future correspondence about this issue. "
I want the BB-8 issue id as a hyperlink, not text so customers can click and access the portal.
Thanks
Rohit
Hi Rohit - Welcome to the Atlassian Community!
Use this:
<a href="{{issue.toUrl}}">{{issue.summary}}</a>
You can change summary to key if you would rather just show the issue key instead of the summary.
Hi @Rohit Singh
You should be able to adjust the email content similar to this:
"....Your ticket has been assigned an ID of {{issue.key}}. Please include the string {{issue.key}} in the subject line of all future correspondence....."
You can do the same for the Subject line of the email:
"We have received your request: {{issue.key}}"
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It comes like this as static text "Your ticket has been assigned an ID of BB-8. Please include the string BB-8 in the subject line of all future correspondence.." while I want this to come like as a clickable link (hyperlink to that issue) so user can click the same and reach the portal.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My apologies. Try {{issue.url}} in place of {{issue.key}}.
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.