65

这是我的web.config邮件设置:

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network" from="smthg@smthg.net">
        <network defaultCredentials="true" host="localhost" port="587" userName="smthg@smthg.net" password="123456"/>
      </smtp>
    </mailSettings>
  </system.net>

这就是我尝试从中读取值的方法web.config

 var smtp = new System.Net.Mail.SmtpClient();
 var credential = new System.Net.Configuration.SmtpSection().Network;

 string strHost = smtp.Host;
 int port = smtp.Port;
 string strUserName = credential.UserName;
 string strFromPass = credential.Password;

但凭据始终为空。我如何访问这些值?

4

7 回答 7

113

由于没有接受任何答案,并且其他人都没有为我工作:

using System.Configuration;
using System.Net.Configuration;
// snip...
var smtpSection = (SmtpSection)ConfigurationManager.GetSection("system.net/mailSettings/smtp");
string username = smtpSection.Network.UserName;
于 2013-11-13T17:45:59.927 回答
38

不必ConfigurationManager手动使用和获取值。简单地实例化一个SmtpClient就足够了。

SmtpClient client = new SmtpClient();

这是MSDN所说的:

此构造函数使用应用程序或机器配置文件中的设置初始化新 SmtpClient 的 Host、Credentials 和 Port 属性。

斯科特·格思里(Scott Guthrie)前段时间写了一篇关于这个的小帖子。

于 2014-02-20T08:41:19.417 回答
8

通过使用配置,以下行:

var smtp = new System.Net.Mail.SmtpClient();

将使用配置的值 - 您无需再次访问和分配它们。


至于null值 - 您正在尝试错误地访问配置值。您只是在创建一个空SmtpSection而不是从配置中读取它。

var smtpSection = (SmtpSection)ConfigurationManager.GetSection("<the section name>");
var credentials == smtpSection.Network;
于 2012-11-19T11:13:52.580 回答
3
            //You can access the network credentials in the following way.
            //Read the SmtpClient section from the config file    
            var smtp = new System.Net.Mail.SmtpClient();
            //Cast the newtwork credentials in to the NetworkCredential class and use it .
            var credential = (System.Net.NetworkCredential)smtp.Credentials;
            string strHost = smtp.Host;
            int port = smtp.Port;
            string strUserName = credential.UserName;
            string strFromPass = credential.Password;
于 2013-12-09T07:33:20.143 回答
2

我认为如果您设置了 defaultCredentials="true" ,您将拥有 credentials = null 因为您没有使用它们。

调用 .Send 方法时是否发送电子邮件?

所以

这是我的网络配置邮件设置:

<system.net>
   <mailSettings>
      <smtp deliveryMethod="Network" from="smthg@smthg.net">
         <network defaultCredentials="false" host="localhost" port="587"
            userName="smthg@smthg.net" password="123456"/>
      </smtp>
   </mailSettings>
</system.net>

这是cs

SmtpClient smtpClient = new SmtpClient();

string smtpDetails =
    @"
    DeliveryMethod = {0},
    Host = {1},
    PickupDirectoryLocation = {2},
    Port = {3},
    TargetName = {4},
    UseDefaultCredentials = {5}";

Console.WriteLine(smtpDetails,
    smtpClient.DeliveryMethod.ToString(),
    smtpClient.Host,
    smtpClient.PickupDirectoryLocation == null
        ? "Not Set"
        : smtpClient.PickupDirectoryLocation.ToString(),
    smtpClient.Port,
    smtpClient.TargetName,
    smtpClient.UseDefaultCredentials.ToString)
);
于 2012-11-19T11:19:19.543 回答
0

确保您在应用程序中引用了 System.Net

于 2013-04-01T15:33:52.190 回答
-1

设置 defaultCredentials="false",因为当它设置为 true 时,不使用任何凭据。

于 2017-10-31T09:29:49.240 回答