Seeking: Online Email Preview Tool
Thanks for stopping by my personal blog on Marketing Technology! Over 50,000 visitors a month find my content worth returning for, so don't forget to subscribe to the Marketing Technology Blog RSS feed or to the Marketing Technology Email to have new content sent directly to your inbox. You may also find my other business blog helpful, Social Media Domination.
Have you ever noticed how many email clients block images and display the alternative text? I’m curious if anyone has actually seen this emulated utilizing JavaScript or Server-side scripting. I’d like to get a hand on a tool that does it. Over time, I’m sure that I can develop such a page… I actually started playing tonight. Here’s a function that removes all of your images on a page:
function replace() //remove images
{
var imgs = document.getElementsByTagName(’img’); //array
for (var i=0;i<imgs.length;i++) //loop
{
imgs[i].src = “”; //set the images to nothing
}
}
It’s pretty simple Javascript. The first thing I do is collect an array of the images in HTML. An array is a group of items. I told the javascript to get every element that has an img tag. (That’s how you display images in HTML). Next I ‘loop’ through the array by telling it to start with the first item (=0), go for as many items there are (imgs.length), and when it’s done with the loop add 1 to move to the next item (i++).
What basically happens is that the array collects the location of every image on the page, loops through them, and sets each to nothing. What I’d really like to do with this is remove the image but actually display any alternative text - just like an email client would. I’d also love to remove other table and div elements to render it as it would look in many Mobile Clients. This would replace inline style tag and font formatting.
Has anyone seen or built anything like this? If so, drop me a note in my contact form. If it’s written in C# or especially JavaScript, it may even be something I could be authorized to purchase. The advantage of JavaScript is that it could be turned off and on dynamically - a really nice feature! Meanwhile, I’ll continue working on it myself!

Douglas Karr
You’re almost there, just insert the alt tag as the nextSibling.
then put it on userscripts.org
You could also use Greasemonkey to XPI or whatever it is called to make it a proper standalone Firefox extension.
The Web Developer Toolbar has a tool for doing this specifically, called “Replace Images With Alt Attributes”. It does exactly what you want for free!
It did throw up an accessibility issue with your site though. Turning images off leaves black text on a black background, so anyone surfing the web without images on won’t be reading your posts!
Adding:
.post { background-color:#fff; }should solve that without messing up your theme though.
(I also updated my post class - thanks for pointing that out!)
var showImages = false;
function toggleImages() {
var imgs = document.getElementsByTagName("img");
for (var i=0;i
You build a series of filters to choose from. Say, a GMail filter, Yahoo Mail, Outlook (PC, Mac, etc.) filters, etc. So, instead of having to have dummy test accounts with every service under the sun, you could cycle through previews of each one relatively quickly.
…maybe I’ve said too much…
Pivotal Veracity has some incredible tools! I know they’ve recently launched an API as well. I’m trying to do something a little simpler, just a ‘quick’ look that doesn’t require actually sending the email out. Imagine just a button to click and you can emulate how it would look, just to take care of the low-hanging fruit.
Doug
I haven’t looked at this for a while, so I might be wrong, but don’t the portals keep changing their mail rendering software? If they did, I would think you’d be constantly playing catch-up if you tried to use your own test software. That’s why we use pvIQ: it sends us exactly what the portal would render.
Mark
Doug