Skip to content
Snippets Groups Projects
Commit bd0f9c20 authored by David Baker's avatar David Baker
Browse files

Actually do UTF8 correctly

parent c5b3c6e1
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ class Mailer(object):
plainText = self.notif_template.render(**template_vars)
text_part = MIMEText(plainText.encode('utf8'), "html")
text_part = MIMEText(plainText, "html", "utf8")
text_part['Subject'] = "New Matrix Notifications"
text_part['From'] = self.hs.config.email_notif_from
text_part['To'] = email_address
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment