From 9a2086a6521b9a1de78408bf4f58df1c7ee61ba5 Mon Sep 17 00:00:00 2001 From: skandrigi Date: Thu, 28 Nov 2024 18:39:10 -0600 Subject: [PATCH] update html mail function name --- hiss/shared/admin_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hiss/shared/admin_functions.py b/hiss/shared/admin_functions.py index 34c4b6c7..0185a2ad 100644 --- a/hiss/shared/admin_functions.py +++ b/hiss/shared/admin_functions.py @@ -2,7 +2,7 @@ from django.core.mail import get_connection, EmailMultiAlternatives @shared_task -def send_mass_html_mail_task(datatuple, fail_silently=False, user=None, password=None): +def send_mass_html_mail(datatuple, fail_silently=False, user=None, password=None): """ Celery task to send multiple HTML emails given a datatuple of (subject, text_content, html_content, from_email, recipient_list).