Skip to content
Closed
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
10 changes: 10 additions & 0 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ via a third-party provider:
===================== =============================================== ===============
Service Install with Webhook support
===================== =============================================== ===============
`AhaSend`_ ``composer require symfony/aha-send-mailer`` yes
`Amazon SES`_ ``composer require symfony/amazon-mailer``
`Azure`_ ``composer require symfony/azure-mailer``
`Brevo`_ ``composer require symfony/brevo-mailer`` yes
Expand Down Expand Up @@ -127,6 +128,10 @@ Service Install with Webhook su

The Mailomat, Mailtrap, Postal and Sweego integrations were introduced in Symfony 7.2.

.. versionadded:: 7.3

The AhaSend integration was introduced in Symfony 7.3.

.. note::

As a convenience, Symfony also provides support for Gmail (``composer
Expand Down Expand Up @@ -175,6 +180,10 @@ party provider:
+------------------------+---------------------------------------------------------+
| Provider | Formats |
+========================+=========================================================+
| `AhaSend`_ | - API ``ahasend+api://KEY@default`` |
| | - HTTP n/a |
| | - SMTP ``ahasend+smtp://USERNAME:PASSWORD@default`` |
+------------------------+---------------------------------------------------------+
| `Amazon SES`_ | - SMTP ``ses+smtp://USERNAME:PASSWORD@default`` |
| | - HTTP ``ses+https://ACCESS_KEY:SECRET_KEY@default`` |
| | - API ``ses+api://ACCESS_KEY:SECRET_KEY@default`` |
Expand Down Expand Up @@ -2013,6 +2022,7 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
following the redirection and the message will be lost from the mailer event
handler.

.. _`AhaSend`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/AhaSend/README.md
.. _`Amazon SES`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Amazon/README.md
.. _`Azure`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Azure/README.md
.. _`App Password`: https://support.google.com/accounts/answer/185833
Expand Down
7 changes: 6 additions & 1 deletion webhook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Currently, the following third-party mailer providers support webhooks:
============== ============================================
Mailer Service Parser service name
============== ============================================
AhaSend ``mailer.webhook.request_parser.ahasend``
Brevo ``mailer.webhook.request_parser.brevo``
Mandrill ``mailer.webhook.request_parser.mailchimp``
MailerSend ``mailer.webhook.request_parser.mailersend``
Expand All @@ -42,9 +43,13 @@ Sweego ``mailer.webhook.request_parser.sweego``

.. versionadded:: 7.2

The ``Mandrill``, ``Mailomat``, ``Mailtrap``, and ``Sweego`` integrations were introduced in
The ``Mandrill``, ``Mailomat``, ``Mailtrap``, and ``Sweego`` integrations were introduced in
Symfony 7.2.

.. versionadded:: 7.3

The ``AhaSend`` integration was introduced in Symfony 7.3.

.. note::

Install the third-party mailer provider you want to use as described in the
Expand Down
Loading