mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
11 lines
249 B
Python
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)
|