diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-04 17:11:55 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-04 17:11:55 +0000 |
commit | 7cd2fd2b75bc5597e9b2a128bf61201910be6df2 (patch) | |
tree | 411c26f821129f196b2a38863a34b05e4e8388e9 /config/settings/base.py | |
parent | 4b21e3889e8337fa5bc9e58cdfc61a9f2019adc9 (diff) |
Email verification
- Associated changes in the .env file now allow us to test the SMTP server config
- Added mine and J's email ad admins
- Grab env variables from the .env file in the local.py file for testing purposes
- Set an expiry of 24hrs for the validation link to work
- Added an HTML version of the verification email
Diffstat (limited to 'config/settings/base.py')
-rw-r--r-- | config/settings/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/base.py b/config/settings/base.py index 81e0f82..28e40ed 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -234,7 +234,7 @@ EMAIL_TIMEOUT = 5 # Django Admin URL. ADMIN_URL = "admin/" # https://docs.djangoproject.com/en/dev/ref/settings/#admins -ADMINS = [("""Matthew Lemon""", "y@yulqen.org")] +ADMINS = [("Matthew Lemon", "matt@matthewlemon.com"), ("Joanna Lemon", "joannalemon1@gmail.com")] # https://docs.djangoproject.com/en/dev/ref/settings/#managers MANAGERS = ADMINS # https://cookiecutter-django.readthedocs.io/en/latest/settings.html#other-environment-settings |