1# The email backend to use. For possible shortcuts see plain.email. 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 7EMAIL_DEFAULT_FROM:str 8 9EMAIL_DEFAULT_REPLY_TO:list[str]=None1011# Host for sending email.12EMAIL_HOST:str="localhost"1314# Port for sending email.15EMAIL_PORT:int=5871617# Whether to send SMTP 'Date' header in the local time zone or in UTC.18EMAIL_USE_LOCALTIME:bool=False1920# Optional SMTP authentication information for EMAIL_HOST.21EMAIL_HOST_USER:str=""22EMAIL_HOST_PASSWORD:str=""23EMAIL_USE_TLS:bool=True24EMAIL_USE_SSL:bool=False25EMAIL_SSL_CERTFILE:str=None26EMAIL_SSL_KEYFILE:str=None27EMAIL_TIMEOUT:int=None