pmclanahan / django-celery-email

A Django email backend that uses a celery task for sending the email.
BSD 3-Clause "New" or "Revised" License
477 stars 110 forks source link

Documentation about installation and use #52

Open lmorillas opened 6 years ago

lmorillas commented 6 years ago

I can send emails with celery with tasks I wrote. But something is wrong with my install of dj_delery_email, because my emails stay PENDING

Celery see djcelery taks:

[tasks]
  . djcelery_email_send_multiple

But

In [61]: res = mail.send_mass_mail(mails)

In [62]: res
Out[62]: [<AsyncResult: 94651aee-ded9-40e4-a9f2-4019f4a4d349>]

In [63]: res[0].status
Out[63]: 'PENDING'

And no log at celery server

How can I degug it?