Ok, what I'm trying to achieve is a picture being in an email signature in Outlook Express without it being an attachment, as alot of companies delete emails with attachments to be safer.
Any help would be great.
Printable View
Ok, what I'm trying to achieve is a picture being in an email signature in Outlook Express without it being an attachment, as alot of companies delete emails with attachments to be safer.
Any help would be great.
Set objMail = Server.CreateObject("CDONTS.Newmail")
objMail.BodyFormat = 0
objMail.MailFormat = 0
objMail.AttachURL "d:\websites\yourpathname\folder1\leftlogoblue2.jpg", "leftlogoblue2.jpg"
Then just call the image in your regular html format in the email:
<img src="leftlogoblue2.jpg">
Good Luck!
:p
Looks good to me. But one thing.... where do I put that top code? :rolleyes: