Docs: Update Brevo opened event

Brevo has stopped sending the opened
event on first open (along with the
unique_opened event), so change docs
to recommend enabling both.
This commit is contained in:
Mike Edmunds
2023-12-29 11:20:39 -08:00
parent 2cadb949cd
commit 804cb76aa1
3 changed files with 12 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ class SendinBlueTrackingWebhookView(SendinBlueBaseWebhookView):
"unsubscribe": (EventType.UNSUBSCRIBED, None),
# shouldn't occur for transactional messages:
"list_addition": (EventType.SUBSCRIBED, None),
"unique_opened": (EventType.OPENED, None), # you'll *also* receive an "opened"
"unique_opened": (EventType.OPENED, None), # first open; see also opened above
}
def esp_to_anymail_event(self, esp_event):