It is lucky that we provide method for you to directly edit the HTML code on top of the visual editor. In our editor, just press the HTML code button (next to the image button), you can directly paste/edit the HTML code there.
Just some points to remind:
1) Copy the code inside the <body> tag of your source to the editor, code outside the <body> tag will be ignored
2) No Javascript please (even we allow it, the recipient's mail client may not agree for that)
3) Put all CSS inside the body tag as well
For example, place a tag like this:
<style type="text/css">a:link, a:visited{color: #EEEEEE; text-decoration:none;}
</style>
4) Make your image path absolute
Correct:
<img src="http://www.example.com/enews/images/pretty-image.jpg"/>
Incorrect:
<img src="/enews/images/pretty-image.jpg"/>
<img src="images/pretty-image.jpg"/>
It makes senses, right? How come we know where is the exact location of "images/pretty-image.jpg" if you don't tell us it is from "http://www.example.com/enews/".
Can the click-throughs to the urls inside the email content be tracked?
ReplyDelete