如何用ASP發(fā)送html格式的郵件?
%
Dim objMail
Set objMail = CreateObject("CDONTS.Newmail")
objMail.TO = "sunchunliang@263.net"
objMail.From =shenzhaoyang@intels.net
objmail.Subject = "閃亮日子之html撼雪噴云"
objMail.MailFormat = cdoMailFormatMime
objMail.bodyFormat = cdobodyFormathtml
objMail.body = "內容"
objMail.send
set objMail = Nothing
%>[1]