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