Skip to content

Commit

Permalink
add DEFAULT_FROM_EMAIL settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Arcuri committed Aug 28, 2024
1 parent e26acd2 commit 5a08378
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
EMAIL_USE_TLS = env("EMAIL_USE_TLS", default=True)
EMAIL_HOST_USER = env("EMAIL_HOST_USER", default=None)
EMAIL_HOST_PASSWORD = env("EMAIL_HOST_PASSWORD", default=None)
DEFAULT_FROM_EMAIL = env("DEFAULT_FROM_EMAIL", default=None)

# WhiteNoise
# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 5a08378

Please sign in to comment.