From f289efd676d3c4bc73b4719e0574137698d49ee1 Mon Sep 17 00:00:00 2001 From: Quantum Date: Mon, 24 Jan 2022 20:20:04 -0500 Subject: [PATCH] Fix email examples --- qlinks/settings/template.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qlinks/settings/template.py b/qlinks/settings/template.py index 157dbc4..2ba2fee 100644 --- a/qlinks/settings/template.py +++ b/qlinks/settings/template.py @@ -25,7 +25,10 @@ STATIC_ROOT = '/srv/example' # Email # https://docs.djangoproject.com/en/4.0/topics/email/#email-backends # The email all broken links notifications will come from, among other things. -# DEFAULT_FROM_MAIL = 'qlinks@example.com' +# DEFAULT_FROM_EMAIL = 'qlinks@example.com' + +# Emails that Django errors will come from. +# SERVER_EMAIL = 'qlinks@example.com' # A tuple of (name, email) pairs that specifies those who will be mailed # when the server experiences an error when DEBUG = False.