SMTP服务器需要安全连接或客户端未经过身份验证

cou*_*011 30 c# smtp asp.net-mvc-2

我收到了这个错误

The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. e17sm974159fak.34
Run Code Online (Sandbox Code Playgroud)

Web.config文件

<mailSettings>
    <smtp deliveryMethod="Network"
                from="emailaccount@gmail.com">
        <network defaultCredentials="false" host="smtp.gmail.com" port="587"
                    userName="emailaccount@gmail.com"  password="12345678" />
    </smtp>        
</mailSettings>
Run Code Online (Sandbox Code Playgroud)

代码文件

public void Submit()
        {
            EnsureCurrentlyValid();
            // Send via email
            var message = new StringBuilder();
            message.AppendFormat("Date: {0:yyyy-MM-dd hh:mm}\n", DateTime.Now);
            message.AppendFormat("Email from: {0}\n", Name);
            message.AppendFormat("Email: {0}\n", Email);
            message.AppendFormat("Message: {0}\n", Message);
            SmtpClient smtpClient = new SmtpClient();
            MailMessage m = new MailMessage(
                "visitor@mydomain.com", // From
                "emailaccount@gmail.com", // To
                "Suggestion/Comments", // Subject
                message.ToString()); // Body

            smtpClient.Send(m);
        }
Run Code Online (Sandbox Code Playgroud)

Dar*_*rov 49

尝试将EnableSsl属性设置为true:

smtpClient.EnableSsl = true;
Run Code Online (Sandbox Code Playgroud)

AFAIK此属性只能在代码中设置,不能在配置文件中指定.


Mic*_*ael 21

实际上,您可以通过添加enableSsl ="true"在web.config文件中处理此问题.这对我有用,我不需要在代码中做任何事情.

例如

<network host="smtp.gmail.com" enableSsl="true" ... />
Run Code Online (Sandbox Code Playgroud)

  • enableSSl仅在.net 4+中受支持 (6认同)