Re: Problem with links in email events since Update to Version 3.2.1
Posted: Thu Mar 01, 2018 10:24 pm
When you put this in the template's rich text editor:
Code: Select all
The template editor will automatically recognize it as a URL and transforms it into this HTML code:
https://@=ticket_id_link
Code: Select all
You can fix this by editing the HTML code and changing it to:
<p><a href="https://=ticket_id_link">https://@=ticket_id_link</a></p>
Code: Select all
You can also prevent this problem by putting the protocol in your variable. If you set the variable in the trigger like this:
<p><a href="https://@=ticket_id_link">https://@=ticket_id_link</a></p>
Code: Select all
Then you can use this HTML in the template:
@@ticket_id_link = "https://example.com/extra/info";
Code: Select all
<p><a href="@=ticket_id_link">@=ticket_id_link</a></p>