OnlineJudge/account/tasks.py

9 lines
219 B
Python
Raw Normal View History

from celery import shared_task
2017-04-18 17:37:10 +00:00
2017-04-18 18:03:48 +00:00
from utils.shortcuts import send_email
@shared_task
2017-04-18 18:03:48 +00:00
def send_email_async(from_name, to_email, to_name, subject, content):
send_email(from_name, to_email, to_name, subject, content)