|
<%
Dim objMail
Set objMail = CreateObject("CDONTS.Newmail")
objMail.TO = "bhumphre@confederationc.on.ca"
objMail.From = "Whoeveryouwant@whereever.com" '在这里可以选择你要发送去那里的地址
objmail.Subject = "HTML EMAIL!"
objMail.MailFormat = cdoMailFormatMime
objMail.BodyFormat = cdoBodyFormatHTML
objMail.Body = " Hey there! This is a html doc
in your Email!!!!
align='center'>We kick the Llamas Ass!!!! "
objMail.send
set objMail = Nothing
%>
|