<%
Set msg = Server.CreateObject("JMail.Message")
msg.silent = true
msg.Logging = true
msg.Charset = "gb2312"
msg.MailServerUserName = "yb@dgemail.com" ''输入smtp服务器验证登陆名 (邮局中任何一个用户的Email地址)
msg.MailServerPassword = "" ''输入smtp服务器验证密码 (用户Email帐号对应的密码)
msg.From ="yb@dgemail.com"' Request.Form("email") ''发件人Email
msg.FromName = "11"'Request.Form("name") ''发件人姓名
msg.AddRecipient "yb@dgemail.com" ''收件人Email
msg.Subject = "信件主题"'Request.Form("subject") ''信件主题
msg.Body = "正文"'Request.Form("body") ''正文
'msg.addattachment(server.mappath("new.txt"))
msg.Send ("http://mail.dgemail.com") ''smtp服务器地址(企业邮局地址)
set msg = nothing
response.write("发送成功!")
%>
我下载了一个jmail.dll组件,并注册了
可运行这段代码,邮件怎么都发不出去,对这个问题,我真的想发疯,我想请问一下,对于邮件发送和接收,除了安装iis的SMTP和注册jmail组件外,还需要哪些处理,才能让上面的代码生效,将邮件正常发出???或是代码有问题????还请一定指教指教