plain.mail
Everything you need to send email.
1# The email backend to use. For possible shortcuts see plain.mail.
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.
5EMAIL_BACKEND: str
6
7# Default email address to use for various automated correspondence from
8# the site managers.
9DEFAULT_FROM_EMAIL: str
10
11# Host for sending email.
12EMAIL_HOST: str = "localhost"
13
14# Port for sending email.
15EMAIL_PORT: int = 25
16
17# Whether to send SMTP 'Date' header in the local time zone or in UTC.
18EMAIL_USE_LOCALTIME: bool = False
19
20# Optional SMTP authentication information for EMAIL_HOST.
21EMAIL_HOST_USER: str = ""
22EMAIL_HOST_PASSWORD: str = ""
23EMAIL_USE_TLS: bool = False
24EMAIL_USE_SSL: bool = False
25EMAIL_SSL_CERTFILE: str = None
26EMAIL_SSL_KEYFILE: str = None
27EMAIL_TIMEOUT: int = None