Skip to content

Instantly share code, notes, and snippets.

@mbrochh
Last active December 15, 2015 10:09
Show Gist options
  • Select an option

  • Save mbrochh/5243243 to your computer and use it in GitHub Desktop.

Select an option

Save mbrochh/5243243 to your computer and use it in GitHub Desktop.
Django Email Settings for Gmail
ADMINS = (
('Yourname', 'yourname@gmail.com'),
)
MANAGERS = ADMINS
FROM_EMAIL = ADMINS[0][1]
EMAIL_SUBJECT_PREFIX = '[dev yourproject] '
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = FROM_EMAIL
EMAIL_HOST_PASSWORD = 'yourgmailpw'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment