-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type error for send_messages #84
Comments
I am having this issue too, where you able to find a fix? |
If you are still having this issue, i had to move to using django post office.. with celery |
I ran into the same issue today. @mkaykisiz Where you able to fix this? |
I ignored the "CELERY_EMAIL_BACKEND" variable. If you don't set the variable, celery using default mail backend. |
Thanks for you response! Actually I found out what the problem is. If you put |
Hello,
I'm using 2.0.0 version on my project. I have a some problems. I found this in my log file.
"Cannot reach CELERY_EMAIL_BACKEND django.core.mail.backends.smtp.EmailBackend"
And After, we add this parameter.
CELERY_EMAIL_BACKEND = 'djcelery_email.backends.CeleryEmailBackend'
After, I have a new problem.
djcelery_email_send_multiple[49d3b5a9-b1af-424c-8709-95b506d66c49]: Failed to send email message to [u'[email protected]'], retrying. (TypeError("unsupported operand type(s) for +=: 'int' and 'list'",))
Because send_messages method of CeleryEmailBackend return to list.
django-celery-email/djcelery_email/tasks.py
Line 50 in be1a5bb
The text was updated successfully, but these errors were encountered: