Skip to content

Instantly share code, notes, and snippets.

@ajumell
Last active January 1, 2016 02:49
Show Gist options
  • Save ajumell/8081914 to your computer and use it in GitHub Desktop.
Save ajumell/8081914 to your computer and use it in GitHub Desktop.
Email Settings for Django Production and Development
This gist contains of different options of django email settings.
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'username@gmail.com'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_HOST = "localhost"
EMAIL_PORT = "1025"
EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'username'
EMAIL_HOST_PASSWORD = "password"
EMAIL_PORT = 587
EMAIL_USE_TLS = Tru
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment