diff options
-rw-r--r-- | app/misc_func.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/misc_func.py b/app/misc_func.py index c8bb77b..518b6a3 100644 --- a/app/misc_func.py +++ b/app/misc_func.py @@ -17,7 +17,7 @@ def flash_errors(form): # Sauce: https://github.com/alectrocute/flaskSaaS/blob/master/app/toolbox/email.py -def send(to, subject, body, body_html, thread=True): +def send(to, subject, body, body_html): sender = app.config["MAIL_FROM"] message = EmailMultiAlternatives(subject, body, sender, [to]) message.attach_alternative(body_html, "text/html") |