This shows you how to send a html email using asp.
Set objMailJ1 = CreateObject("CDONTS.NewMail")
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
