Outlook 07 Preview and Code Analysis Update |
|
11.22.2009 We are excited to announce that we have recently made some drastic improvements to our Outlook 07 preview. We are hoping that this will give developers a better understanding of how to design and construct HTML and CSS emails that comply with Outlook's often frustrating MS Word engine. Get connected with Email on Acid for up-to-date news and information on the subject of email design, development, and testing! |
It is important to note: Our Email Test only supports absolute references to links and images embedded within your email. So what’s the difference between the two? Hopefully this article will shed some light on the subject…
An Absolute Reference provides the complete http address, the directory path, and the file name. For instance, if you had a file named “logo.gif” in a directory called “images” under the URL “http://www.emailonacid.com” you would link to it as follows:
http://www.emailonacid.com/images/logo.gif
In html context, this might appear as:
<IMG ALIGN=bottom src="http://www.emailonacid.com/images/logo.gif">
Absolute references must also be used inside embedded or inline CSS.
A Relative Reference provides a partial http address in the form of a fragment of a full directory path. Keep in mind that by default, if no server name or path is specified in html, the file reference defaults to the current directory. If you are publishing files on the web, the default would be any file within your www directory.
To use the example above, you would specify the link as
/images/logo.gif
In html context, this might appear as:
<IMG ALIGN=bottom src="/images/logo.gif">
If you haven't signed up yet, give our FREE online Email Test a try. Just drop in your code and we will instantly simulate your email in the most popular email clients!
Get connected with Email on Acid for up-to-date news and information on the subject of email design, development, and testing!