Skip to content

Commit

Permalink
minor #18359 [Mailer] Rename Sendinlue to Brevo (blaugueux)
Browse files Browse the repository at this point in the history
This PR was merged into the 6.4 branch.

Discussion
----------

[Mailer] Rename Sendinlue to Brevo

Sendinblue mailer transport was deprecated in Symfony 6.4, new transport Brevo was created due to the service name change.

https://www.brevo.com/fr/blog/pourquoi-brevo/

PR : symfony/symfony#50302

Commits
-------

10ef904 [Mailer] Rename Sendinlue to Brevo
  • Loading branch information
javiereguiluz committed Jul 9, 2023
2 parents d61240b + 10ef904 commit 14e8f34
Showing 1 changed file with 12 additions and 7 deletions.
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

0 comments on commit 14e8f34

Please sign in to comment.