Add Date email header in Python implementation

This commit is contained in:
medmunds 2021-02-17 09:46:13 -08:00 committed by Alexander Kulumbeg
parent eb1606b086
commit 3503474bb8
1 changed files with 2 additions and 0 deletions

View File

@ -287,6 +287,7 @@ try:
from email.message import EmailMessage
except ImportError:
from email.mime.text import MIMEText as EmailMessage # Python 2
from email.utils import formatdate as rfc2822_date
from smtplib import SMTP, SMTP_SSL, SMTPException
from socket import error as SocketError
except ImportError as err:
@ -318,6 +319,7 @@ except (AttributeError, TypeError):
msg["Subject"] = subject
msg["From"] = from_email
msg["To"] = to_emails
msg["Date"] = rfc2822_date(localtime=True)
msg["X-Mailer"] = x_mailer
smtp = None