IMP:(#2352) Added Date and Message-ID Headers to Email Notifications

This commit is contained in:
davalanche 2019-10-08 22:47:18 -06:00 committed by evilhero
parent 66897c1549
commit 0cc6523115
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ import requests
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import formatdate, make_msgid
# This was obviously all taken from headphones with great appreciation :)
@ -383,6 +384,8 @@ class EMAIL:
msg['From'] = str(self.emailfrom)
msg['To'] = str(self.emailto)
msg['Subject'] = subject
msg['Date'] = formatdate()
msg['Message-ID'] = make_msgid('mylar')
msg.attach(MIMEText(message, 'plain'))
if self.emailenc is 1: