OnlineJudge/account/tasks.py
2017-04-19 01:37:10 +08:00

9 lines
209 B
Python

from celery import shared_task
from utils.mail import send_email
@shared_task
def _send_email(from_name, to_email, to_name, subject, content):
send_email(from_name, to_email, to_name, subject, content)