kadenios/elections/tasks.py
2021-06-20 12:53:55 +02:00

12 lines
318 B
Python

from celery import shared_task
from .models import Election
from .utils import send_mail
@shared_task
def send_election_mail(election_pk, subject, body, reply_to):
election = Election.objects.get(pk=election_pk)
send_mail(election, subject, body, reply_to)
election.sent_mail = True
election.save()