aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-08 15:30:51 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-08 15:30:51 +0000
commit9950234b1aa07fceed0d220297d158be6a067cd2 (patch)
tree23708f889cfc11f84dbc288508a29719a18ac53d /config
parent30101453a75aaa635e3458d509dec164a6a68ac1 (diff)
wip: sorting out the email sending
Diffstat (limited to 'config')
-rw-r--r--config/settings/local.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/config/settings/local.py b/config/settings/local.py
index 0e4b7e4..b9eb50b 100644
--- a/config/settings/local.py
+++ b/config/settings/local.py
@@ -38,24 +38,24 @@ DEFAULT_FROM_EMAIL = env(
default="alphabetlearning.online <help@alphabetlearning.online>",
)
SERVER_EMAIL = env("DJANGO_SERVER_EMAIL", default=DEFAULT_FROM_EMAIL)
-EMAIL_HOST = env('EMAIL_HOST')
-EMAIL_PORT = env('EMAIL_PORT')
-EMAIL_HOST_USER = env('EMAIL_HOST_USER')
-EMAIL_HOST_PASSWORD = env('EMAIL_HOST_PASSWORD')
-EMAIL_USE_TLS = env.bool('EMAIL_USE_TLS', default=True)
+EMAIL_HOST = env("EMAIL_HOST")
+EMAIL_PORT = env("EMAIL_PORT")
+EMAIL_HOST_USER = env("EMAIL_HOST_USER")
+EMAIL_HOST_PASSWORD = env("EMAIL_HOST_PASSWORD")
+EMAIL_USE_TLS = env.bool("EMAIL_USE_TLS", default=True)
# WhiteNoise
# ------------------------------------------------------------------------------
# http://whitenoise.evans.io/en/latest/django.html#using-whitenoise-in-development
-#INSTALLED_APPS = ["whitenoise.runserver_nostatic", *INSTALLED_APPS]
+# INSTALLED_APPS = ["whitenoise.runserver_nostatic", *INSTALLED_APPS]
# django-debug-toolbar
# ------------------------------------------------------------------------------
# https://django-debug-toolbar.readthedocs.io/en/latest/installation.html#prerequisites
-#INSTALLED_APPS += ["debug_toolbar"]
+# INSTALLED_APPS += ["debug_toolbar"]
# https://django-debug-toolbar.readthedocs.io/en/latest/installation.html#middleware
-#MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
+# MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
# https://django-debug-toolbar.readthedocs.io/en/latest/configuration.html#debug-toolbar-config
# DEBUG_TOOLBAR_CONFIG = {
# # "DISABLE_PANELS": ["debug_toolbar.panels.redirects.RedirectsPanel"],