Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created December 28, 2011 18:45
Show Gist options
  • Save robertgreiner/1529122 to your computer and use it in GitHub Desktop.
Save robertgreiner/1529122 to your computer and use it in GitHub Desktop.
Web.config for sending email using ASP
<system.net>
<mailSettings>
<smtp>
<network defaultCredentials="false"
host="mail.yourdomain.com" port="25"
userName="name-to-send-email@yourdomain.com"
password="*****"/>
</smtp>
</mailSettings>
</system.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment