以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  我有两个邮箱,从zsxx999@126.com发至121636166@qq.com 下面的代码不报错,也没有结果  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=145578)

--  作者:有点蓝
--  发布时间:2020/1/31 20:31:00
--  
我测试没有问题

Dim m As New MailSender

m.Host = "smtp.126.com"
m.Account = "zsxx999@126.com"
m.Password = "这里改为授权码"
m.From = "zsxx999@126.com"
m.To = "121616166@qq.com"
m.Title = "李总明天来北京"
m.C
m.Send() ‘改为send有没有提示错误

--  作者:有点蓝
--  发布时间:2020/2/1 10:24:00
--  
邮箱设置有问题吧。提示是被反垃圾邮件给过滤隔离了

使用send才能看到错误的,send没有问题了再改为sendasync

加上内容测试

Dim m As New MailSender
m.Host = "smtp.126.com"
m.Account = "zsxx999@126.com"
m.Password = "这里改为授权码"
m.From = "zsxx999@126.com"
m.To = "121616166@qq.com"
m.Title = "李总明天来北京"
m.Content = "李总明天来北京"
m.Send() 
[此贴子已经被作者于2020/2/1 10:27:27编辑过]