Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For some time now I've been storing my connection and app settings in an external file and just referencing that file via my web.config. This works really well because it allows me to keep separate connection strings and app settings. This is really handy since I find during development I will often make many changes to the webconfig and I hate having to manage the environment specific values every time I need to update my web.config.

Is there anyway I can achieve this with he SMTP configuration sections in the web.config.

share|improve this question

2 Answers

up vote 14 down vote accepted

Sure, you can use the configSource attribute.

Example:

<system.net>
  <mailSettings>
   <smtp configSource="MailSettings.config"/>
  </mailSettings>
</system.net>

Then put your mailSettings configuration data in MailSettings.config

So then your MailSettings.config file would have something like:

    <network 
    host="relayServerHostname" 
    port="portNumber"
    userName="username"
    password="password" />

Update: looks like it may need to actually go in the smtp node to work properly, so I've updated the above code to indicate that - same idea, only this one should work. :)

share|improve this answer
Cool! I didn't know you could do that! – Christian Payne Apr 29 '09 at 22:04
This is one of those ASP.NET features I wish I knew earlier! – sharpcloud Apr 29 '09 at 22:06
Ahhh I was trying this previously I was just forgeting to put it inside the system.net node... whooops.. Thanks for the heads up. – James Sheldon Apr 29 '09 at 22:14
Yeah, wierd how you can't confisource the mailsettings element. One comment though - I would use smtp.config rather than mainsettings.config now, to avoid confusion (you are breaking out the smtp node, not the mainsettings node). – UpTheCreek Dec 22 '10 at 11:09

My software stores it in the registry, even in production.

share|improve this answer
Wow.... wish SO allowed assigning medals..... ;-) – Doug Mar 29 '10 at 5:51
Why would a web app store this in the registry? – UpTheCreek Dec 22 '10 at 11:10
Because we have other remoting methods besides web. – Joshua Dec 22 '10 at 16:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.