From b8d08cbab23d1aa87bfe12217c607c259ae20275 Mon Sep 17 00:00:00 2001 From: Timo Bakx Date: Tue, 12 Dec 2023 11:41:23 +0100 Subject: [PATCH] [Webhook] Added Sendgrid's webhook support (added in 6.4) --- webhook.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webhook.rst b/webhook.rst index 08dd68e3535..f9bde7451a9 100644 --- a/webhook.rst +++ b/webhook.rst @@ -3,7 +3,7 @@ Webhook .. versionadded:: 6.3 - The Webhook component was introduced in Symfony 6.3 + The Webhook component was introduced in Symfony 6.3. The Webhook component is used to respond to remote webhooks to trigger actions in your application. This document focuses on using webhooks to listen to remote @@ -84,8 +84,14 @@ Mailer service Parser service name =============== ========================================== Mailgun ``mailer.webhook.request_parser.mailgun`` Postmark ``mailer.webhook.request_parser.postmark`` +Sendgrid ``mailer.webhook.request_parser.sendgrid`` =============== ========================================== +.. versionadded:: 6.4 + + Webhook support for the Sendgrid service was introduced in Symfony 6.4. + + Set up the webhook in the third-party mailer. For Mailgun, you can do this in the control panel. As URL, make sure to use the ``/webhook/mailer_mailgun`` path behind the domain you're using.