add date header to emails
This commit is contained in:
parent
4413a1c534
commit
2613829fd6
1 changed files with 3 additions and 1 deletions
|
@ -34,8 +34,9 @@
|
|||
#
|
||||
#
|
||||
|
||||
import sys, requests, datetime,smtplib
|
||||
import sys, requests, datetime, smtplib
|
||||
from email.mime.text import MIMEText
|
||||
from email.utils import formatdate
|
||||
|
||||
# Redmine config
|
||||
redmine_url = 'https://tickets.zom.bi'
|
||||
|
@ -107,6 +108,7 @@ def smtp_send()
|
|||
mediawiki_page['content'] + mail_footer)
|
||||
mail_message['Subject'] = mail_subject
|
||||
mail_message['From'] = smtp_from
|
||||
mail_message['Date'] = formatdate()
|
||||
for recipient in smtp_recipients:
|
||||
mail_message['To'] = recipient
|
||||
smtp_server.sendmail(from_addr=smtp_from,\
|
||||
|
|
Loading…
Reference in a new issue