I’m designing an html email to be read using Outlook 2007.
I want to add an image, a logo, positioned first thing on the email.
How do I include an image? I feel like I need a path to do the usual:
<img src=”mypath/image.gif”>
But I don’t think I can include paths to anything. What should I do?
Thanks a ton
You can reference an attached image using the
cid:scheme.In general, you would let a tool handle this for you. Last time I had cause to do this, I write the program that sent the mail in Perl and used the
Email::MIME::CreateHTMLmodule.