diff --git a/mailer.rst b/mailer.rst index 4fd02eb84d7..e5d646d5aa2 100644 --- a/mailer.rst +++ b/mailer.rst @@ -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 @@ -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 @@ -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`` | @@ -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 diff --git a/webhook.rst b/webhook.rst index aba95cffb04..674c9f2c5c6 100644 --- a/webhook.rst +++ b/webhook.rst @@ -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`` @@ -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