We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d1d3ab commit 50d8a14Copy full SHA for 50d8a14
plain-mail/plain/mail/default_settings.py
@@ -2,7 +2,11 @@
2
# The default is to use the SMTP backend.
3
# Third-party backends can be specified by providing a Python path
4
# to a module that defines an EmailBackend class.
5
-EMAIL_BACKEND: str = "plain.mail.backends.smtp.EmailBackend"
+EMAIL_BACKEND: str
6
+
7
+# Default email address to use for various automated correspondence from
8
+# the site managers.
9
+DEFAULT_FROM_EMAIL: str
10
11
# Host for sending email.
12
EMAIL_HOST: str = "localhost"
@@ -21,7 +25,3 @@
21
25
EMAIL_SSL_CERTFILE: str = None
22
26
EMAIL_SSL_KEYFILE: str = None
23
27
EMAIL_TIMEOUT: int = None
24
-
-# Default email address to use for various automated correspondence from
-# the site managers.
-DEFAULT_FROM_EMAIL: str = "webmaster@localhost"
0 commit comments