客服中心

在线咨询 (时间:8:30~24:00)

热门关键字

  • top域名4元促销
  • .CN域名开放注册!
  • 独立IP虚拟主机仅需198元/年
新闻公告

【主机相关】使用Jmail组件发送邮件



来源:新安数据发布时间:2013-8-28


代码如下:
<%
Set msg = Server.CreateObject("JMail.Message")
msg.silent = true
msg.Logging = true
msg.Charset = "gb2312"
msg.MailServerUserName = "..." 输入smtp服务器验证登陆名
msg.MailServerPassword = "..." 输入smtp服务器验证密码
msg.From = "...@..." 发件人
msg.FromName = FromName
msg.AddRecipient "...@...","...@..." 收件人
msg.Subject = "test" 主题
msg.Body = "this is body!" 正文
msg.Send ("smtp Server Name") smtp服务器地址

set msg = nothing
%>