Skip to content

Instantly share code, notes, and snippets.

@gileno
Created May 28, 2012 22:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gileno/2821493 to your computer and use it in GitHub Desktop.
Save gileno/2821493 to your computer and use it in GitHub Desktop.
Settings para Django e Gmail
# E-mails
DEFAULT_FROM_EMAIL = 'Nome <email@gmail.com>'
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'email@gmail.com'
EMAIL_HOST_PASSWORD = 'senha'
EMAIL_PORT = 587
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment