From 136919747cde58522309753b7503affa2f78c8c7 Mon Sep 17 00:00:00 2001 From: Mindiell Date: Sat, 18 Feb 2023 16:38:10 +0100 Subject: [PATCH] fix: default FROM email set --- ponyconf/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ponyconf/settings.py b/ponyconf/settings.py index c41d590..7725bd8 100644 --- a/ponyconf/settings.py +++ b/ponyconf/settings.py @@ -168,6 +168,7 @@ CACHES = { SELECT2_CACHE_BACKEND = 'select2' SERVER_EMAIL = 'ponyconf@example.com' +DEFAULT_FROM_EMAIL = SERVER_EMAIL EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'localhost' EMAIL_PORT = 25