diff --git a/app/email.py b/app/email.py
index d4e87fad3475f21b6970fbabcbcd59ee88548b5e..3f9b03449058a7462209e7b782d1a1c17e9bc166 100644
--- a/app/email.py
+++ b/app/email.py
@@ -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)
 
 
diff --git a/sco_version.py b/sco_version.py
index 4891ff4db522f5ae423b63a567d29ebfad143ba0..5ac36785b19d87d8023df51bf26a4ce1000b748f 100644
--- a/sco_version.py
+++ b/sco_version.py
@@ -1,7 +1,7 @@
 # -*- mode: python -*-
 # -*- coding: utf-8 -*-
 
-SCOVERSION = "9.7.26"
+SCOVERSION = "9.7.27"
 
 SCONAME = "ScoDoc"