Created
June 7, 2012 17:25
-
-
Save frankgeerlings/2890188 to your computer and use it in GitHub Desktop.
SMTP server in Web.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.net> | |
<mailSettings> | |
<smtp deliveryMethod="Network" from="[email protected]"> | |
<network | |
host="mail.example.com" | |
userName="[email protected]" | |
password="*************" | |
port="25" /> | |
</smtp> | |
</mailSettings> | |
</system.net> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment