8000 [Mailer] Add Scaleway bridge documentation by MrMicky-FR · Pull Request #18581 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Mailer] Add Scaleway bridge documentation #18581

8000
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 31, 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
12 changes: 9 additions & 3 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Service Install with
`MailPace`_ ``composer require symfony/mail-pace-mailer``
`MailerSend`_ ``composer require symfony/mailer-send-mailer``
`Postmark`_ ``composer require symfony/postmark-mailer``
`Scaleway`_ ``composer require symfony/scaleway-mailer``
`SendGrid`_ ``composer require symfony/sendgrid-mailer``
===================== ==============================================

Expand All @@ -126,8 +127,8 @@ Service Install with

.. versionadded:: 6.4

The ``Brevo`` integration was renamed in Symfony 6.4 (in previous
Symfony versions it was called ``Sendinblue``).
The ``Brevo`` (in previous Symfony versions it was called ``Sendinblue``)
and ``Scaleway`` integrations were introduced in Symfony 6.4.

.. note::

Expand Down Expand Up @@ -161,7 +162,7 @@ how to deliver messages via SendGrid. The *only* part you need to change is the
Each provider has different environment variables that the Mailer uses to
configure the *actual* protocol, address and authentication for delivery. Some
also have options that can be configured with query parameters at the end of the
``MAILER_DSN`` - like ``?region=`` for Amazon SES or Mailgun. Some providers support
``MAILER_DSN`` - like ``?region=`` for Amazon SES, Mailgun or Scaleway. Some providers support
sending via ``http``, ``api`` or ``smtp``. Symfony chooses the best available
transport, but you can force to use one:

Expand Down Expand Up @@ -217,6 +218,10 @@ party provider:
| | - HTTP n/a |
| | - API postmark+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Scaleway`_ | - SMTP scaleway+smtp://PROJECT_ID:API_KEY@default |
| | - HTTP n/a |
| | - API scaleway+api://PROJECT_ID:API_KEY@default |
+------------------------+-----------------------------------------------------+
| `Sendgrid`_ | - SMTP sendgrid+smtp://KEY@default |
| | - HTTP n/a |
| | - API sendgrid+api://KEY@default |
Expand Down Expand Up @@ -1881,4 +1886,5 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
.. _`Postmark`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Postmark/README.md
.. _`RFC 3986`: https://www.ietf.org/rfc/rfc3986.txt
.. _`S/MIME`: https://en.wikipedia.org/wiki/S/MIME
.. _`Scaleway`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Scaleway/README.md
.. _`SendGrid`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendgrid/README.md
0