Fix send mail async in admin #515

This commit is contained in:
Daniel Grams 2023-07-04 23:44:38 +02:00
parent c0bdb454f5
commit 72c920d707

View File

@ -173,7 +173,7 @@ def send_mails(recipients, subject, template, **context):
def send_mail_async(recipient, subject, template, **context):
send_mails_async([recipient], subject, template, **context)
return send_mails_async([recipient], subject, template, **context)
def send_mails_async(recipients, subject, template, **context):