PDA

Click to See Complete Forum and Search --> : Help with HTML e-mail


GingerNinja
Sep 28th, 2000, 11:09 AM
How can I send HTML in an e-mail from an asp page, I use code similar to the one layed out bellow to send text based e-mail, is it very different to send HTML e-mail?

Set sendmail = Server.CreateObject("CDONTS.NewMail")
sendmail.From = "me"
sendmail.To = "you"
sendmail.Subject = "the bain of e-mail"
sendmail.Body = "yeah whatever"
sendmail.Importance = 1
sendmail.Send

Thanks in advance to any help

Sep 29th, 2000, 08:12 AM
Hi,

While I was looking for information on CDONTS I ran accross the following which may help you.

http://www.elementkjournals.com/asp/9905/asp9951.htm

Hope it's what your looking for.

Brigitta