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
This issue has been automatically marked as "stale:discard". We are sorry that we haven't been able to prioritize it yet.
If this issue still relevant, please leave any comment if you have any new additional information that helps to solve this issue. We encourage you to create a pull request, if you can. We are happy to help you with that.
When sending an email fails, bamoo tries to raise an exeption. E.g. this happens here:
https://github.com/thoughtbot/bamboo/blob/f29d4984eeb836680acd425b8d44d4d3c7edb606/lib/bamboo/mailer.ex#L234
But
error
must not always be a string. In our case error sometimes is a Tuple. E.g. like:This leads to an argument error:
Bamboo should ensure to raise strings only. E.g. by using inspect like
raise inspect(error)
.The text was updated successfully, but these errors were encountered: