Sending html based emails using asp

This shows you how to send a html email using asp.


Set objMailJ1 = CreateObject("CDONTS.NewMail")

html = "


html = html & “


html = html & “


html = html & “

 Intranet


objMailJ1.From=”intranet@no-spam.com”
objMailJ1.To=”sender@no-spam.com”
objMailJ1.Subject=”Subject Line - ” & vendor_name & “”
objMailJ1.BodyFormat=0
objMailJ1.MailFormat=0
objMailJ1.Body=html
objMailJ1.Send

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment