Skip to content

Commit 14e8f34

Browse files
committed
minor #18359 [Mailer] Rename Sendinlue to Brevo (blaugueux)
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
2 parents d61240b + 10ef904 commit 14e8f34

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

mailer.rst

+12-7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ via a third-party provider:
103103
Service Install with
104104
===================== ==============================================
105105
`Amazon SES`_ ``composer require symfony/amazon-mailer``
106+
`Brevo`_ ``composer require symfony/brevo-mailer``
106107
`Infobip`_ ``composer require symfony/infobip-mailer``
107108
`Mailchimp Mandrill`_ ``composer require symfony/mailchimp-mailer``
108109
`Mailgun`_ ``composer require symfony/mailgun-mailer``
@@ -111,7 +112,6 @@ Service Install with
111112
`MailerSend`_ ``composer require symfony/mailer-send-mailer``
112113
`Postmark`_ ``composer require symfony/postmark-mailer``
113114
`SendGrid`_ ``composer require symfony/sendgrid-mailer``
114-
`Sendinblue`_ ``composer require symfony/sendinblue-mailer``
115115
===================== ==============================================
116116

117117
.. versionadded:: 6.2
@@ -124,6 +124,11 @@ Service Install with
124124

125125
The MailerSend integration was introduced in Symfony 6.3.
126126

127+
.. versionadded:: 6.4
128+
129+
The ``Brevo`` integration was renamed in Symfony 6.4 (in previous
130+
Symfony versions it was called ``Sendinblue``).
131+
127132
.. note::
128133

129134
As a convenience, Symfony also provides support for Gmail (``composer
@@ -176,6 +181,10 @@ party provider:
176181
| | - HTTP ses+https://ACCESS_KEY:SECRET_KEY@default |
177182
| | - API ses+api://ACCESS_KEY:SECRET_KEY@default |
178183
+------------------------+-----------------------------------------------------+
184+
| `Brevo`_ | - SMTP brevo+smtp://USERNAME:PASSWORD@default |
185+
| | - HTTP n/a |
186+
| | - API brevo+api://KEY@default |
187+
+------------------------+-----------------------------------------------------+
179188
| `Google Gmail`_ | - SMTP gmail+smtp://USERNAME:APP-PASSWORD@default |
180189
| | - HTTP n/a |
181190
| | - API n/a |
@@ -212,10 +221,6 @@ party provider:
212221
| | - HTTP n/a |
213222
| | - API sendgrid+api://KEY@default |
214223
+------------------------+-----------------------------------------------------+
215-
| `Sendinblue`_ | - SMTP sendinblue+smtp://USERNAME:PASSWORD@default |
216-
| | - HTTP n/a |
217-
| | - API sendinblue+api://KEY@default |
218-
+------------------------+-----------------------------------------------------+
219224

220225
.. versionadded:: 6.3
221226

@@ -1501,11 +1506,11 @@ If your transport does not support tags and metadata, they will be added as cust
15011506
15021507
The following transports currently support tags and metadata:
15031508

1509+
* Brevo
15041510
* Mailchimp
15051511
* Mailgun
15061512
* Postmark
15071513
* Sendgrid
1508-
* Sendinblue
15091514

15101515
The following transports only support tags:
15111516

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

18561861
.. _`Amazon SES`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Amazon/README.md
18571862
.. _`App Password`: https://support.google.com/accounts/answer/185833
1863+
.. _`Brevo`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Brevo/README.md
18581864
.. _`default_socket_timeout`: https://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout
18591865
.. _`DKIM`: https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail
18601866
.. _`download the foundation-emails.css file`: https://github.com/foundation/foundation-emails/blob/develop/dist/foundation-emails.css
@@ -1876,4 +1882,3 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
18761882
.. _`RFC 3986`: https://www.ietf.org/rfc/rfc3986.txt
18771883
.. _`S/MIME`: https://en.wikipedia.org/wiki/S/MIME
18781884
.. _`SendGrid`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendgrid/README.md
1879-
.. _`Sendinblue`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendinblue/README.md

0 commit comments

Comments
 (0)