kadenios/elections/tasks.py

14 lines
351 B
Python
Raw Normal View History

2021-06-19 21:06:22 +02:00
from celery import shared_task
from .models import Election
from .utils import send_mail
@shared_task
2021-06-20 09:00:28 +02:00
def send_election_mail(election_pk, subject, body, reply_to):
2021-06-19 21:06:22 +02:00
election = Election.objects.get(pk=election_pk)
2021-06-20 09:00:28 +02:00
send_mail(election, subject, body, reply_to)
2021-06-19 21:06:22 +02:00
election.sent_mail = False
election.save()
# election.sent_mail = True