Hi,
I am trying to send mails through cdo.message object from Win 2003 server. In the message I want to send an image along with some text. Image is not showing in the mail. And it looks like that the image have been blocked due to security reason --> click here to download the image. So, I always have to do right click on the picture in order to download the picture, and also after I add an image into the email body, the email always go to spam folder.
So, I just wonder if anybody know how to display the image in the email without having to do right click to download it. And, how do I make the email not go to spam folder because it never goes to spam folder before I add an image in the folder?
And, this is my code:
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Your Friend " & Request.Form("name") & " sent you this link."
myMail.From="
[email protected]"
myMail.To=Request.Form("f_email")
myMail.CreateMHTMLBody "http://............/......../tellfriendemail.html"
myMail.HtmlBody = replace(myMail.HtmlBody, "#ovmessage#", Request.Form("msg"))
myMail.Send
Set myMail=Nothing
Thanks!!!