<%
set email=server.CreateObject("cdonts.newmail")
email.BodyFormat =0 'HTML格式,如果是纯文本则是1
email.MailFormat =0
email.From="[email protected]"
email.To ="[email protected]"
email.Subject ="标题:试一试"
email.Body="信件内容"
'email.AttachFile file1 '发附件时需要这一句
email.Send 
%>email.BodyFormat =0 '为HTML格式