Guest User

Untitled

a guest
Nov 16th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
  2. EMAIL_HOST = 'smtp.someserver.com' # mail service smtp
  3. EMAIL_HOST_USER = 'someone@fakeserver.com' # email id
  4. EMAIL_HOST_PASSWORD = 'my password' #password
  5. EMAIL_PORT = 465
  6. EMAIL_USE_SSL = True
  7.  
  8. EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
  9. EMAIL_HOST = 'smtp.fakeserver.com' # mail service smtp
  10. EMAIL_HOST_USER = 'someone@fakeserver.com' # email id
  11. EMAIL_HOST_PASSWORD = 'my password' #password
  12. EMAIL_PORT = 465
  13. EMAIL_USE_SSL = True
  14. DEFAULT_FROM_EMAIL = 'someone@fakeserver.com'
Add Comment
Please, Sign In to add comment