Link in Notification Stack

Does anyone know of a workaround to get a hyperlink added to a notification stack message contents?

Thanks in advance.

You can use standard anchor html code, but you need to escape any quotes with a backslash.

<a href=\"[link target]\">Linked Text</a>

3 Likes

Additionally, if you’d rather not escape the double-quotes you could also use single quotes, which would look like this.

<a href='https://mywebsite.com'>Linked Text</a>

3 Likes

Thank you both, really appreciate your help.

2 Likes