Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to programmatically retrieve smtp server details from web.config

Tags:

c#

web-config

I have the following SMTP details stored in web.config

<system.net>
    <mailSettings>
      <smtp from="[email protected]">
        <network host="mail.domain.com" port="25" userName="username" password="password" defaultCredentials="true"/>
      </smtp>
    </mailSettings>
  </system.net>

How can I retrieve these values from within a c# class.

like image 780
JL. Avatar asked Jan 07 '10 08:01

JL.


2 Answers

Configuration configurationFile = WebConfigurationManager
    .OpenWebConfiguration("~/web.config");
MailSettingsSectionGroup mailSettings = configurationFile
    .GetSectionGroup("system.net/mailSettings") as MailSettingsSectionGroup;
if (mailSettings != null)
{
    int port = mailSettings.Smtp.Network.Port;
    string host = mailSettings.Smtp.Network.Host;
    string password = mailSettings.Smtp.Network.Password;
    string username = mailSettings.Smtp.Network.UserName;
}
like image 89
Darin Dimitrov Avatar answered Sep 22 '22 14:09

Darin Dimitrov


If you need to send email with this mail-server-details you don't need to read the settings and apply. These settings are applied implicitly in the application.

If you are reading it for any other reason I was about to write something similar to Darin's answer. But just as I was writing I found he answered so please refer to his answer if you actually need to read. :)

like image 44
this. __curious_geek Avatar answered Sep 22 '22 14:09

this. __curious_geek