We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
exceptions are not raised for 5XX errors from SendGrid even with raise_delivery_errors option
raise_delivery_errors
sendgrid-actionmailer/lib/sendgrid_actionmailer.rb
Lines 295 to 298 in 135d244
Why only for 4XX erros?
If exceptions are not raised for 5XX errors, it behaves as if it has succeeded. So we can't notice SendGrid incidents like this even if they occur.
And ActionJob retry or AWS SQS retry or something won't be triggered.
Here's the simple solution: #119
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
exceptions are not raised for 5XX errors from SendGrid even with
raise_delivery_errors
optionsendgrid-actionmailer/lib/sendgrid_actionmailer.rb
Lines 295 to 298 in 135d244
Why only for 4XX erros?
If exceptions are not raised for 5XX errors, it behaves as if it has succeeded.
So we can't notice SendGrid incidents like this even if they occur.
And ActionJob retry or AWS SQS retry or something won't be triggered.
Here's the simple solution: #119
The text was updated successfully, but these errors were encountered: