diff --git a/app/email_utils.py b/app/email_utils.py index 79db3eea..a9a872fc 100644 --- a/app/email_utils.py +++ b/app/email_utils.py @@ -255,7 +255,7 @@ def send_email( smtp = SMTP(POSTFIX_SERVER, POSTFIX_PORT or 25) msg = MIMEMultipart("alternative") - msg.attach(MIMEText(plaintext, "text")) + msg.attach(MIMEText(plaintext)) if not html: LOG.d("Use plaintext as html")