Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

How to personalized the image link

Avatar

Level 3

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!

1 Accepted Solution

Avatar

Correct answer by
Level 9

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

View solution in original post

1 Reply

Avatar

Correct answer by
Level 9

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