Forum Moderators: mack
My company would like to offer HTML e-mail marketing design for our clients - and possibly performing the e-mail blast for them as well.
I've searched Google and have compared a few different bulk-email programs, most of which have simple WYSIWYG editors included.
Can anyone recommend some things that I should look for while researching which software to buy? I don't have much experience with databse languages and I'm unsure how much that would factor into the aspect of e-mail list management. I'm hoping I can find software that will manage this for me. Thanks!
Personally... and this is my opinion... I thoroughly dislike html formatted messages hitting my inbox. Nine times out of ten I'll delete them unread, and the one I might read could get a reply "Don't send me any html/rich text messages..."
Usually I just add the sender's address to my filters and never worry about it again. And I'm pretty sure I'm not the only one out there who does that.
Another question - is it possible to create an HTML e-mail from scratch (i.e. in plain text) and then migrate it into your Outlook or Mac Mail? If so, is it also possible to use CSS in the header?
CSS in an html formatted email is unreliable at best, use inline markup. Also, if you don't send images as attachments (very.bad.idea to do this) be sure to indicate the full URL to the image in the src.
There are ways of "doing it right" involving multipart emails and tweaking on your server/email program, but using the method you describe, a down and dirty email for both would be this.
<html>
<body>
<!--
You are seeing this plain text message
because your email program does not support
html. Please ignore the code at the bottom
or set your email program to read HTML emails.
-->
<p>This is the html portion of the message</p>
</body>
</html>
The HTML comment <!-- --> is invisible to html viewers.
Like it, dislike it, html email is firmly ingrained in the output of emails, we have to deal with it.
In some forms, it's actually an improvement if not abused - you can format receipts in nice columns (tables, of course) instead of merrily dancing the order receipt down the left of the email.
I guess I'm curious about how this whole process is done. Where is the HTML code stored that is being referenced in my mail program? Do I need special software to do this, like I mentioned in my first post, and does that software normally give me the option to do both plain text and HTML?
These are questions that I need to answer to intelligently go about implementing the service for my company.
Philosophically speaking - whether we like HTML e-mail marketing or not, I have to agree with rocknbil - it's here to stay and our customers are asking for it...
If I reply to the message, the HTML is preserved in my new message window, unless I turn the HTML off. When I do, the HTML is replaced by a plain text message that contains all of the content of the original e-mail, but there is no code anywhere to be seen.
These are functions of your mail program, nothing to do with the way it's sent. Experiment with a few emails on various platforms, and be sure to include web-based programs - Gmail, Yahoo, Hotmail, etc. - in your testing. If you think cross browser compatibility tests your resolve, you will see what a can of worms it is to get html emails to render similarly in all programs. :-)
BTW - Rocknbil's 'comment' approach is another elegant solution to the problem.
Another thing to think about with html emails is the use of images. More and more email clients by default do not show images from new senders. Make sure you look at your email with images turned off and try to avoid placing important information within the images.