Created
August 15, 2014 14:05
-
-
Save darthwade/26fea92eaa0826fd338f to your computer and use it in GitHub Desktop.
Django Gmail SMTP configuration
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
EMAIL_HOST = 'smtp.gmail.com' | |
EMAIL_HOST_USER = '{username}@gmail.com' | |
EMAIL_HOST_PASSWORD = '{password}' | |
EMAIL_PORT = 587 | |
EMAIL_USE_TLS = True | |
DEFAULT_FROM_EMAIL = '{username}@gmail.com' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment