12 lines
185 B
Python
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 |