Skip to content

Instantly share code, notes, and snippets.

@ilivewithian
Created May 13, 2012 15:38
Show Gist options
  • Save ilivewithian/2688956 to your computer and use it in GitHub Desktop.
Save ilivewithian/2688956 to your computer and use it in GitHub Desktop.
SSL SMTP Web.config snippet
<configuration>
<system.net>
<mailSettings>
<smtp deliveryMethod=”network”>
<network host="localhost"
port="25"
enableSsl="true"
defaultCredentials="true" />
</smtp>
</mailSettings>
</system.net>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment