mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Resend: new ESP (#341)
Add support for Resend.com backend and webhooks. Closes #341
This commit is contained in:
@@ -13,6 +13,7 @@ from .webhooks.mailjet import MailjetInboundWebhookView, MailjetTrackingWebhookV
|
||||
from .webhooks.mandrill import MandrillCombinedWebhookView
|
||||
from .webhooks.postal import PostalInboundWebhookView, PostalTrackingWebhookView
|
||||
from .webhooks.postmark import PostmarkInboundWebhookView, PostmarkTrackingWebhookView
|
||||
from .webhooks.resend import ResendTrackingWebhookView
|
||||
from .webhooks.sendgrid import SendGridInboundWebhookView, SendGridTrackingWebhookView
|
||||
from .webhooks.sendinblue import (
|
||||
SendinBlueInboundWebhookView,
|
||||
@@ -104,6 +105,11 @@ urlpatterns = [
|
||||
PostmarkTrackingWebhookView.as_view(),
|
||||
name="postmark_tracking_webhook",
|
||||
),
|
||||
path(
|
||||
"resend/tracking/",
|
||||
ResendTrackingWebhookView.as_view(),
|
||||
name="resend_tracking_webhook",
|
||||
),
|
||||
path(
|
||||
"sendgrid/tracking/",
|
||||
SendGridTrackingWebhookView.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user