@@ -13,7 +13,7 @@ Webhook support is optional. If you haven't yet, you'll need to
1313:ref: `configure webhooks <webhooks-configuration >` in your Django
1414project. (You may also want to review :ref: `securing-webhooks `.)
1515
16- Once you've enabled webhooks, Anymail will send a ``anymail.signals.tracking ``
16+ Once you've enabled webhooks, Anymail will send an ``anymail.signals.tracking ``
1717custom Django :mod: `signal <django.dispatch> ` for each ESP tracking event it receives.
1818You can connect your own receiver function to this signal for further processing.
1919
@@ -45,7 +45,7 @@ in multiple receivers, if that makes your code cleaner. These
4545:ref: `signal receiver functions <signal-receivers >` are documented
4646in more detail below.
4747
48- Note that your tracking signal recevier (s) will be called for all tracking
48+ Note that your tracking signal receiver (s) will be called for all tracking
4949webhook types you've enabled at your ESP, so you should always check the
5050:attr: `~AnymailTrackingEvent.event_type ` as shown in the examples above
5151to ensure you're processing the expected events.
@@ -173,7 +173,7 @@ Normalized tracking event
173173
174174 Not all ESPs provide all reject reasons, and this area is often
175175 under-documented by the ESP. Anymail does its best to interpret
176- the ESP event, but you may find (e.g.,) that it will report
176+ the ESP event, but you may find that it will report
177177 `'timed_out' ` for one ESP, and `'bounced' ` for another, sending
178178 to the same non-existent mailbox.
179179
@@ -241,7 +241,7 @@ Your Anymail signal receiver must be a function with this signature:
241241 in a 400 HTTP error to the webhook. See discussion
242242 below.
243243
244- If ( any of) your signal receivers raise an exception, Anymail
244+ If any of your signal receivers raise an exception, Anymail
245245will discontinue processing the current batch of events and return
246246an HTTP 400 error to the ESP. Most ESPs respond to this by re-sending
247247the event(s) later, a limited number of times.
0 commit comments