diff options
author | José Joaquín Atria <jjatria@gmail.com> | 2023-09-18 12:32:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 07:32:01 -0400 |
commit | 6946209e671ec278d7648434500aeb2639c8c3c3 (patch) | |
tree | 5ea7d4b4a1809501894621775cc066daf36945af /synapse | |
parent | Bump typing-extensions from 4.7.1 to 4.8.0 (#16341) (diff) | |
download | synapse-6946209e671ec278d7648434500aeb2639c8c3c3.tar.xz |
Set email charset as utf-8 rather than utf8 (#16329)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/send_email.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/send_email.py b/synapse/handlers/send_email.py index 4f5fe62fe8..657d9b3559 100644 --- a/synapse/handlers/send_email.py +++ b/synapse/handlers/send_email.py @@ -174,8 +174,8 @@ class SendEmailHandler: if raw_to == "": raise RuntimeError("Invalid 'to' address") - html_part = MIMEText(html, "html", "utf8") - text_part = MIMEText(text, "plain", "utf8") + html_part = MIMEText(html, "html", "utf-8") + text_part = MIMEText(text, "plain", "utf-8") multipart_msg = MIMEMultipart("alternative") multipart_msg["Subject"] = subject |