Skip to content
Snippets Groups Projects
Commit 58e86fc5 authored by Thomas Schneider's avatar Thomas Schneider
Browse files

Set Message-ID according to RFC2822

parent 08c93906
No related branches found
No related tags found
1 merge request!2Set Message-ID according to RFC2822
...@@ -83,7 +83,7 @@ class MailManager: ...@@ -83,7 +83,7 @@ class MailManager:
msg["From"] = self.from_addr msg["From"] = self.from_addr
msg["To"] = to_addr msg["To"] = to_addr
msg["Subject"] = subject msg["Subject"] = subject
msg["Message-ID"] = "{}@{}".format(uuid4(), getfqdn()) msg["Message-ID"] = "<{}@{}>".format(uuid4(), getfqdn())
msg.attach(MIMEText(content, _charset="utf-8")) msg.attach(MIMEText(content, _charset="utf-8"))
if appendix is not None: if appendix is not None:
for name, file_like in appendix: for name, file_like in appendix:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment