用ASPMail组件实现E_mail自动反馈
用ASPMail组件实现E_mail自动反馈,用ASPMail组件实现E_mail自动反馈
ASP精品屋 探索者 www.asphouses.com
转载请保留此条信息!
-------------------------------------
网页上E_mail自动反馈的asp程序示例如下:
<%
Set mailer = Server.CreateObject("ASPMAIL.ASPMailCtrl.1")
recipient="接收者email"
sender="发送者email"
subject="email的主题"
message="email的内容"
mailserver = "mail.drcnet.com.cn";
result = mailer.SendMail(mailserver, recipient, sender, subject, message)
%