Skip to content

Commit

Permalink
Making DEFAULT_FROM_EMAIL configurable per environment
Browse files Browse the repository at this point in the history
  • Loading branch information
alextreme committed Sep 19, 2022
1 parent 207b0e6 commit c63c680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/open_inwoner/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
EMAIL_USE_TLS = config("EMAIL_USE_TLS", default=False)
EMAIL_TIMEOUT = 10

DEFAULT_FROM_EMAIL = "openinwoner@maykinmedia.nl"
DEFAULT_FROM_EMAIL = config("DEFAULT_FROM_EMAIL", default="openinwoner@maykinmedia.nl")

#
# LOGGING
Expand Down

0 comments on commit c63c680

Please sign in to comment.