MaikelVE Posted June 8, 2017 Share Posted June 8, 2017 Recently a client of mine told me the link inside his email was unclockable and I've send a test to myself and this was the result: [<a href=]https://my.maikelve.com/viewticket.php?tid=CVL-329-20079&c=BvjALphk">ticket hier bekijken 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted June 8, 2017 Share Posted June 8, 2017 edit your email template and fix the HTML syntax of this template it should look like below instead: <a href="https://my.maikelve.com/viewticket.php?tid=CVL-329-20079&c=BvjALphk">ticket hier bekijken 0 Quote Link to comment Share on other sites More sharing options...
MaikelVE Posted June 11, 2017 Author Share Posted June 11, 2017 Hi! It's like this in the HTML: <a href="{$ticket_link}">ticket hier bekijken</a> 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted June 11, 2017 Share Posted June 11, 2017 Hi! It's like this in the HTML: <a href="{$ticket_link}">ticket hier bekijken</a> it should be one of these: <a href="{$ticket_url}">ticket hier bekijken</a> or {$ticket_link} 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted June 11, 2017 Share Posted June 11, 2017 the problem is that the {$ticket_link} variable already contains it's own <a href></a> in it's value - so there's no need to wrap it in a separate <a href>. but if you do want to, then you'll need to change it as per the post below... https://forum.whmcs.com/showthread.php?124722-E-mail-Brackets&p=500386#post500386 <a href="{$ticket_link|strip_tags:false}">ticket hier bekijken</a> and also note what the above thread says about needing to add strip_tags to your Smarty Security Policy for it to work in v7 - if you don't do that, then it won't work. 0 Quote Link to comment Share on other sites More sharing options...
MaikelVE Posted June 11, 2017 Author Share Posted June 11, 2017 Thanks guys! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.