Skip to content

Commit

Permalink
fix: ensure that email addresses are never unset
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Oct 3, 2024
1 parent 42d827a commit ba44fcd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions coral/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,12 +408,12 @@
SILENCED_SYSTEM_CHECKS = ["captcha.recaptcha_test_key_error"]


# EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' #<-- Only need to uncomment this for testing without an actual email server
# EMAIL_USE_TLS = True
# EMAIL_HOST = 'smtp.gmail.com'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' #<-- Only need to uncomment this for testing without an actual email server
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = "[email protected]"
# EMAIL_HOST_PASSWORD = 'xxxxxxx'
# EMAIL_PORT = 587
EMAIL_HOST_PASSWORD = 'xxxxxxx'
EMAIL_PORT = 587

DEFAULT_FROM_EMAIL = EMAIL_HOST_USER

Expand Down

0 comments on commit ba44fcd

Please sign in to comment.