Created
November 18, 2015 17:25
-
-
Save naveensky/58f5674ee9f48786e3b9 to your computer and use it in GitHub Desktop.
SMTP Settings for 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=""> | |
<network host="smtp.gmail.com" port="587" enableSsl="true" userName="" password="" defaultCredentials="false"/> | |
</smtp>--> | |
<smtp deliveryMethod="SpecifiedPickupDirectory"> | |
<specifiedPickupDirectory pickupDirectoryLocation="c:\Tmp\mail\" /> | |
</smtp> | |
</mailSettings> | |
</system.net> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment