gault-millau/apps/news/tasks.py
2019-10-02 11:48:03 +05:00

12 lines
185 B
Python

from celery import shared_task
from notification.models import Subscriber
@shared_task
def send_email_with_news(news):
print(news)
print("EMAILS WAS SENT!")
return news