Error: need EHLO and AUTH first

来源:互联网 发布:电脑桌面课程表软件 编辑:程序博客网 时间:2024/04/29 21:18

在使用 System.Net.Mail组建发送邮件的时候出现了"命令顺序不正确。 服务器响应为: Error: need EHLO and AUTH first !"异常

解决方法如下:

1.如果使用了qq邮箱请使用授权码(不要用qq邮箱登录密码)

2.启用smtp.UseDefaultCredentials = true;

3.启用smtp.EnableSsl = true;


0 0