Skip to content

Add Azure mailer #19237

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2023
Merged
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
8 changes: 8 additions & 0 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ via a third-party provider:
Service Install with
===================== ==============================================
`Amazon SES`_ ``composer require symfony/amazon-mailer``
`Azure`_ ``composer require symfony/azure-mailer``
`Brevo`_ ``composer require symfony/brevo-mailer``
`Infobip`_ ``composer require symfony/infobip-mailer``
`Mailchimp Mandrill`_ ``composer require symfony/mailchimp-mailer``
Expand All @@ -115,6 +116,10 @@ Service Install with
`SendGrid`_ ``composer require symfony/sendgrid-mailer``
===================== ==============================================

.. versionadded:: 7.1

The Azure integration was introduced in Symfony 7.1.

.. note::

As a convenience, Symfony also provides support for Gmail (``composer
Expand Down Expand Up @@ -167,6 +172,8 @@ party provider:
| | - HTTP ses+https://ACCESS_KEY:SECRET_KEY@default |
| | - API ses+api://ACCESS_KEY:SECRET_KEY@default |
+------------------------+-----------------------------------------------------+
| `Azure`_ | - API azure+api://ACS_RESOURCE_NAME:KEY@default |
+------------------------+-----------------------------------------------------+
| `Brevo`_ | - SMTP brevo+smtp://USERNAME:PASSWORD@default |
| | - HTTP n/a |
| | - API brevo+api://KEY@default |
Expand Down Expand Up @@ -1815,6 +1822,7 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
handler.

.. _`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
.. _`Brevo`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Brevo/README.md
.. _`default_socket_timeout`: https://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout
Expand Down