Skip to content

[Mailer] Rename Sendinlue to Brevo #18359

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
Jul 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
19 changes: 12 additions & 7 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``
`Brevo`_ ``composer require symfony/brevo-mailer``
`Infobip`_ ``composer require symfony/infobip-mailer``
`Mailchimp Mandrill`_ ``composer require symfony/mailchimp-mailer``
`Mailgun`_ ``composer require symfony/mailgun-mailer``
Expand All @@ -111,7 +112,6 @@ Service Install with
`MailerSend`_ ``composer require symfony/mailer-send-mailer``
`Postmark`_ ``composer require symfony/postmark-mailer``
`SendGrid`_ ``composer require symfony/sendgrid-mailer``
`Sendinblue`_ ``composer require symfony/sendinblue-mailer``
===================== ==============================================

.. versionadded:: 6.2
Expand All @@ -124,6 +124,11 @@ Service Install with

The MailerSend integration was introduced in Symfony 6.3.

.. versionadded:: 6.4

The ``Brevo`` integration was renamed in Symfony 6.4 (in previous
Symfony versions it was called ``Sendinblue``).

.. note::

As a convenience, Symfony also provides support for Gmail (``composer
Expand Down Expand Up @@ -176,6 +181,10 @@ party provider:
| | - HTTP ses+https://ACCESS_KEY:SECRET_KEY@default |
| | - API ses+api://ACCESS_KEY:SECRET_KEY@default |
+------------------------+-----------------------------------------------------+
| `Brevo`_ | - SMTP brevo+smtp://USERNAME:PASSWORD@default |
| | - HTTP n/a |
| | - API brevo+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Google Gmail`_ | - SMTP gmail+smtp://USERNAME:APP-PASSWORD@default |
| | - HTTP n/a |
| | - API n/a |
Expand Down Expand Up @@ -212,10 +221,6 @@ party provider:
| | - HTTP n/a |
| | - API sendgrid+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Sendinblue`_ | - SMTP sendinblue+smtp://USERNAME:PASSWORD@default |
| | - HTTP n/a |
| | - API sendinblue+api://KEY@default |
+------------------------+-----------------------------------------------------+

.. versionadded:: 6.3

Expand Down Expand Up @@ -1501,11 +1506,11 @@ If your transport does not support tags and metadata, they will be added as cust

The following transports currently support tags and metadata:

* Brevo
* Mailchimp
* Mailgun
* Postmark
* Sendgrid
* Sendinblue

The following transports only support tags:

Expand Down Expand Up @@ -1855,6 +1860,7 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::

.. _`Amazon SES`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Amazon/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
.. _`DKIM`: https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail
.. _`download the foundation-emails.css file`: https://github.com/foundation/foundation-emails/blob/develop/dist/foundation-emails.css
Expand All @@ -1876,4 +1882,3 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
.. _`RFC 3986`: https://www.ietf.org/rfc/rfc3986.txt
.. _`S/MIME`: https://en.wikipedia.org/wiki/S/MIME
.. _`SendGrid`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendgrid/README.md
.. _`Sendinblue`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendinblue/README.md