zoukankan      html  css  js  c++  java
  • 用System.Net.Mail发送邮件时错误信息

    用System.Net.Mail发送邮件时错误信息  

    配置示例如下:

    <appSettings>

            <add key="EmailFrom" value="emanxaut@xaut.edu.cn"/>
            <add key="EmailTo" value="eman@xaut.edu.cn"/>
            <add key="SmtpServer" value="mail.xaut.edu.cn"/>
            <add key="Port" value="25"/>
            <add key="MailUser" value="emanxaut"/>
            <add key="MailPassword" value="xxxxx"/>
            <add key="NeedCredential" value="true"/>
            <add key="EnableSSL" value="false"/>

        </appSettings>

    配置错误及提示信息:

    SmtpServer错误:

      Unable to connect to the remote server

    Port错误:

      Unable to connect to the remote server

    MailPassword错误:

      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

    MailUser错误:

      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. 

    EnableSSL错误:

      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. w12sm2503911tib.10

    EmailTo错误:

      仍然可以“成功”发送,无错误提示。

    EmailFrom错误:

      仍然可以“成功”发送,无错误提示。

    NeedCredential错误:

      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

  • 相关阅读:
    数据结构进阶——线段树
    基本数据结构—Hash哈希
    NOIP2013提高组 day2 2019.7.15
    基本算法——归并排序
    基本数据结构—Trie
    NOIP 2011 提高组 Day2 校模拟 7.11
    Noip2014提高组真题Day1,2 校模拟7.7
    NOIP2015 提高组 day1 7.8校模拟
    NOIP2008 提高组 6.9校模拟
    STL-#include<set>
  • 原文地址:https://www.cnblogs.com/emanlee/p/1324157.html
Copyright © 2011-2022 走看看