diff options
author | Frederick Muriuki Muriithi | 2024-08-13 11:22:36 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-13 11:52:14 -0500 |
commit | 12edc160df0ead9ac1ae4e62a44d49582e063021 (patch) | |
tree | e025d389f4771746d2f6cd5580ddf04bd005b648 /gn_auth/settings.py | |
parent | 04501fdda362a71a7ba7c8abc1ee07d360b320ee (diff) | |
download | gn-auth-12edc160df0ead9ac1ae4e62a44d49582e063021.tar.gz |
Emails: Make "From" address configurable
We are running GeneNetwork in different environments. Each environment
could have it's own separate domain, and need a different sender email
to allow the underlying services to allow the emails through.
Diffstat (limited to 'gn_auth/settings.py')
-rw-r--r-- | gn_auth/settings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn_auth/settings.py b/gn_auth/settings.py index 6015560..2a78be3 100644 --- a/gn_auth/settings.py +++ b/gn_auth/settings.py @@ -42,3 +42,4 @@ SMTP_PORT = 587 SMTP_TIMEOUT = 200 # seconds SMTP_USER = "no-reply@genenetwork.org" SMTP_PASSWORD = "asecrettoken" +EMAIL_ADDRESS = "no-reply@uthsc.edu" |