Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ via a third-party provider:
Service Install with Webhook support
===================== =============================================== ===============
`Amazon SES`_ ``composer require symfony/amazon-mailer``
`Brevo`_ ``composer require symfony/brevo-mailer``
`Brevo`_ ``composer require symfony/brevo-mailer`` yes
`Infobip`_ ``composer require symfony/infobip-mailer``
`Mailgun`_ ``composer require symfony/mailgun-mailer`` yes
`Mailjet`_ ``composer require symfony/mailjet-mailer``
`Mailjet`_ ``composer require symfony/mailjet-mailer`` yes
`MailPace`_ ``composer require symfony/mail-pace-mailer``
`MailerSend`_ ``composer require symfony/mailer-send-mailer``
`Mandrill`_ ``composer require symfony/mailchimp-mailer``
Expand Down
27 changes: 17 additions & 10 deletions webhook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,27 @@ The Webhook component routing needs to be defined:
;
};

Currently, the following third-party mailer services support webhooks:
Currently, the following third-party services support webhooks:

======== ==========================================
Service Parser service name
======== ==========================================
Brevo ``mailer.webhook.request_parser.brevo``
Mailgun ``mailer.webhook.request_parser.mailgun``
Mailjet ``mailer.webhook.request_parser.mailjet``
Postmark ``mailer.webhook.request_parser.postmark``
Sendgrid ``mailer.webhook.request_parser.sendgrid``
Vonage ``notifier.webhook.request_parser.vonage``
======== ==========================================

=============== ==========================================
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.3

.. versionadded:: 6.4
The support for Mailgun and Postmark was introduced in Symfony 6.3.

Webhook support for the Sendgrid service was introduced in Symfony 6.4.
.. versionadded:: 6.4

The support for Brevo, Mailjet, Sendgrid and Vonage 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``
Expand Down