eventcally/project/base_tasks.py
2023-03-24 21:45:34 +01:00

11 lines
249 B
Python

from project import app, celery
from project.views.utils import send_mail
@celery.task(
base=getattr(app, "celery_http_task_cls"),
priority=0,
)
def send_mail_task(recipient, subject, template):
send_mail(recipient, subject, template)