Hi all, not sure if I'm just misunderstanding this but basically I have text like
Where abc-xxxx should be a link to the ticket. But for some reason I can't figure out how in the "Customised Email" function as rich text. I can do this in a normal email as I have access to the HTML tags, but how do I do this in a "Customised Email".
Thanks!
Hi @Calvin
I think this is based on the content format option chosen, as mentioned by @Varsha Joshi
For HTML, this should apply: <a href="{{issue.url}}">{{issue.key}}</a>
For Rich Text, this should probably be: [{{issue.key}}](issue.url)]
Thanks Marc, indeed it works for HTML which I think I may have to end up doing in the end.
But was hoping to get Rich Text working as I know it would make future email notifications easier. The following is what I get:
and View if i make sure the automation uses the smart thing:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Calvin
You need to try: [{{issue.key}}|(issue.url)]
I had a typo in my previous response, the separator between the name and url needs to be a pipe symbol.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you should pick HTML format.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Calvin
It should be possible to use:
Hi team your Jira Item is: <a href="{{issue.url}}">{{issue.key}}</a>
Some companies has quite a strict handling of hyperlinks in emails due to the risk of "spoofing" so it might be handled as insecure.
Best regards,
/Staffan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thats what I would have thought too, but even on my own personal instance I seem to have a similar issue:
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.