Sendinblue: fix "invalid headers" error

Work around recent (unannounced) Sendinblue API change
that caused "Invalid headers" API error with non-string
custom header values, by converting basic numeric types
to strings. (Borrowed code from SendGrid backend.)

Fixes #288
This commit is contained in:
medmunds
2022-11-04 15:23:29 -07:00
committed by Mike Edmunds
parent 448e8d9d95
commit 681a4afe6b
3 changed files with 13 additions and 3 deletions

View File

@@ -52,6 +52,10 @@ Fixes
* **Postmark:** Handle Postmark's SubscriptionChange events as Anymail
unsubscribe, subscribe, or bounce tracking events, rather than "unknown".
(Thanks to `@puru02`_ for the fix.)
* **Sendinblue:** Work around recent (unannounced) Sendinblue API change
that caused "Invalid headers" API error with non-string custom header
values. Anymail now converts int and float header values to strings.
Other
~~~~~