How to read system.net/mailSettings/smtp from Web.config

后端 未结 7 2131
萌比男神i
萌比男神i 2021-01-31 01:16

This is my web.config mail settings:


    
      

        
7条回答
  •  不思量自难忘°
    2021-01-31 01:58

    Since no answer has been accepted, and none of the others worked for me:

    using System.Configuration;
    using System.Net.Configuration;
    // snip...
    var smtpSection = (SmtpSection)ConfigurationManager.GetSection("system.net/mailSettings/smtp");
    string username = smtpSection.Network.UserName;
    

提交回复
热议问题