diff --git a/app/email_utils.py b/app/email_utils.py index 9010dfba..9a607ac6 100644 --- a/app/email_utils.py +++ b/app/email_utils.py @@ -218,6 +218,7 @@ def send_email( msg.attach(MIMEText(plaintext, "text")) if not html: + LOG.d("Use plaintext as html") html = plaintext.replace("\n", "
") msg.attach(MIMEText(html, "html"))