How can I add alt img text when using styled text emails

chrisvn

New Member
Hi MaxBulk Mailer,

I know how to add alt img tags when using HTML but how can I add them to the email if I am using styled text?

Thanks,

Chris
 
The same way. Styled Text lets you insert HMTL as is.

You can embed online pictures into Styled text with the following code:

<img src="PICTURE_URL_HERE">

Example:
<img src="http://www.maxprog.com/pictures/box_eMailVerifier.gif">

or in case you want also a link to a page:

<a href="URL_HERE"><img src="PICTURE_URL_HERE" border="0"></a>

Example:
<a href="http://www.maxprog.com"><img src="http://www.maxprog.com/pictures/box_iCash_v2.jpg" border="0"></a>
 
Top