Skip to content
Snippets Groups Projects
Commit 820e42ac authored by Emmanuel Viennet's avatar Emmanuel Viennet
Browse files

Fix: mails notification sans contenu HTML

parent ca1ac28f
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ def send_email(
sender: str,
recipients: list,
text_body: str,
html_body="",
html_body: str | None = None,
bcc=(),
attachments=(),
):
......@@ -56,7 +56,6 @@ def send_email(
msg.attach(
attachment["filename"], attachment["mimetype"], attachment["data"]
)
send_message(msg)
......
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.7.26"
SCOVERSION = "9.7.27"
SCONAME = "ScoDoc"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment