1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00

Set email charset as utf-8 rather than utf8 ()

This commit is contained in:
José Joaquín Atria 2023-09-18 12:32:01 +01:00 committed by GitHub
parent fedaebc440
commit 6946209e67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions
changelog.d
synapse/handlers

1
changelog.d/16329.bugfix Normal file
View file

@ -0,0 +1 @@
Use standard name for UTF-8 charset in emails.

View file

@ -174,8 +174,8 @@ class SendEmailHandler:
if raw_to == "": if raw_to == "":
raise RuntimeError("Invalid 'to' address") raise RuntimeError("Invalid 'to' address")
html_part = MIMEText(html, "html", "utf8") html_part = MIMEText(html, "html", "utf-8")
text_part = MIMEText(text, "plain", "utf8") text_part = MIMEText(text, "plain", "utf-8")
multipart_msg = MIMEMultipart("alternative") multipart_msg = MIMEMultipart("alternative")
multipart_msg["Subject"] = subject multipart_msg["Subject"] = subject