0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-02 01:18:25 +02:00

Oops, we're using the dict form

This commit is contained in:
David Baker 2016-06-03 16:38:39 +01:00
parent 06d40c8b98
commit fbf608decb

View file

@ -186,7 +186,9 @@ class Mailer(object):
multipart_msg = MIMEMultipart('alternative')
multipart_msg['Subject'] = "[%s] %s" % (self.app_name, summary_text)
multipart_msg['From'] = self.hs.config.email_notif_from % (self.app_name, )
multipart_msg['From'] = self.hs.config.email_notif_from % {
"app": self.app_name
}
multipart_msg['To'] = email_address
multipart_msg['Date'] = email.utils.formatdate()
multipart_msg['Message-ID'] = email.utils.make_msgid()