You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I must have been using an old version because I see it's already done in master long time ago. However, I had installed it using pip install django-sendgrid-v5 could that be still old somehow?
If you are getting this error, it is because Django 4 seems to have removed this argument.
Changing the line on /sendgrid_backend/signals.py
from:
sendgrid_email_sent = django.dispatch.Signal(providing_args=["message", "fail_flag"])
to:
sendgrid_email_sent = django.dispatch.Signal()
fixes the problem for me.
My Environment:
Python3 version: 3.8.10
Django version: 4.1.8
The text was updated successfully, but these errors were encountered: