mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-04 03:22:06 +00:00
11 lines
256 B
Python
11 lines
256 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
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)
|