如何用asp的jmail发邮件?

    文章来源:万象互联 更新时间:2012-11-6 15:55:32
分享:

Set msg = Server.CreateObject("JMail.Message")
   msg.silent = true
   msg.Logging = true
   msg.Charset = "gb2312"
   msg.MailServerUserName = "user@yourdomain.com" chr(32)输入smtp服务器验证登陆名 (邮局中任何一个用户的Email地址)
   msg.MailServerPassword = "userpasswd"  chr(32)输入smtp服务器验证密码  (用户Email帐号对应的密码)
   msg.From = Request.Form("email")    chr(32)发件人Email
   msg.FromName = Request.Form("name")   chr(32)发件人姓名
   msg.AddRecipient "webmaster@abc.com"  chr(32)收件人Email
   msg.Subject = Request.Form("subject")  chr(32)信件主题
   msg.Body = Request.Form("body")     chr(32)正文
   msg.Send ("mail.yourdomain.com")        chr(32)smtp服务器地址(企业邮局地址)
   set msg = nothing
   %>
 

版权说明:本站原创文章,由万象互联SEO优化发表.
本文地址:https://www.hulian.top/help/64.html
在线咨询
  • 在线时间
  • 8:00-21:00