jmail发邮件验证失败后一种变通的解决办法
set Jmail = Server.CreateObject("JMail.Message")
Jmail.silent = true
Jmail.logging = true
Jmail.CharSet = "GB2312"
Jmail.ContentType = "text/html"
Jmail.From = "我叫什么"
Jmail.FromName = "xxx@163.com"
Jmail.MailServerUserName = fromnameserver
Jmail.MailServerPassword = frompwd
Jmail.AddRecipient toemail
Jmail.Subject = str1
Jmail.Body = str2
sendmail= Jmail.Send(fromsmtp)
Jmail.Close()
Jmail.silent = true
Jmail.logging = true
Jmail.CharSet = "GB2312"
Jmail.ContentType = "text/html"
Jmail.From = "我叫什么"
Jmail.FromName = "xxx@163.com"
Jmail.MailServerUserName = fromnameserver
Jmail.MailServerPassword = frompwd
Jmail.AddRecipient toemail
Jmail.Subject = str1
Jmail.Body = str2
sendmail= Jmail.Send(fromsmtp)
Jmail.Close()