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