File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5656* **Postmark: ** Fix an error in inbound handling with long email address display
5757 names that include non-ASCII characters.
5858
59+ * **Resend: ** Avoid installing a broken version of the ``svix `` package
60+ (which is used to validate Resend webhooks).
61+
5962* **SendGrid: ** Improve handling of non-string values in ``merge_data `` when using
6063 legacy templates or inline merge fields. To avoid a confusing SendGrid API error
6164 message, Anymail now converts numeric merge data values to strings, but will raise
Original file line number Diff line number Diff line change @@ -78,7 +78,11 @@ mailgun = []
7878mailjet = []
7979mandrill = []
8080postmark = []
81- resend = [" svix" ]
81+ resend = [
82+ # Svix v1.63.0 actually requires Python 3.10, but claims otherwise.
83+ " svix<1.63.0; python_version < '3.10'" ,
84+ " svix; python_version >= '3.10'"
85+ ]
8286sendgrid = []
8387sendinblue = []
8488sparkpost = []
You can’t perform that action at this time.
0 commit comments