


Hello,
I am using an image the email but I want to personalized the image link from the data value. For instance,
<a img src="http://www.abc.com/images/email_hero_<%=targetData.ImageLink%>.jpg" width="580" /></a>
But it's not working. Any idea?
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @alik98709228 - your HTML is incorrect. You don't have a href value for your anchor <a> tag.
Try something like this:
<a href="https://your.link.goes/here"><img src="http://www.abc.com/images/email_hero_<%=targetData.ImageLink%>.jpg" width="580"></a>
Thanks
Darren
Hi @alik98709228 - your HTML is incorrect. You don't have a href value for your anchor <a> tag.
Try something like this:
<a href="https://your.link.goes/here"><img src="http://www.abc.com/images/email_hero_<%=targetData.ImageLink%>.jpg" width="580"></a>
Thanks
Darren