Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 7 additions & 1 deletion 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/ahasend-mailer`` yes
`Amazon SES`_ ``composer require symfony/amazon-mailer``
`Azure`_ ``composer require symfony/azure-mailer``
`Brevo`_ ``composer require symfony/brevo-mailer`` yes
Expand All @@ -125,7 +126,7 @@ Service Install with Webhook su

.. versionadded:: 7.2

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

.. note::

Expand Down Expand Up @@ -175,6 +176,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 @@ -1991,6 +1996,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
3 changes: 2 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,7 +43,7 @@ Sweego ``mailer.webhook.request_parser.sweego``

.. versionadded:: 7.2

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

.. note::
Expand Down
Loading