8000 [Mailer] Added documentation for Sendinblue bridge by drixs6o9 · Pull Request #14272 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Mailer] Added documentation for Sendinblue bridge #14272

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
Sep 25, 2020
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
30 changes: 16 additions & 14 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,18 @@ Using a 3rd Party Transport
Instead of using your own SMTP server, you can send emails via a 3rd party
provider. Mailer supports several - install whichever you want:

================== =============================================
================== ==============================================
Service Install with
================== =============================================
================== ==============================================
Amazon SES ``composer require symfony/amazon-mailer``
Gmail ``composer require symfony/google-mailer``
MailChimp ``composer require symfony/mailchimp-mailer``
Mailgun ``composer require symfony/mailgun-mailer``
Mailjet ``composer require symfony/mailjet-mailer``
Postmark ``composer require symfony/postmark-mailer``
SendGrid ``composer require symfony/sendgrid-mailer``
================== =============================================
Sendinblue ``composer require symfony/sendinblue-mailer``
================== ==============================================

Each library includes a :ref:`Symfony Flex recipe <symfony-flex>` that will add
a configuration example to your ``.env`` file. For example, suppose you want to
Expand Down Expand Up @@ -87,17 +88,18 @@ transport, but you can force to use one:
This table shows the full list of available DSN formats for each third
party provider:

==================== ============================================= =========================================== ========================================
Provider SMTP HTTP API
==================== ============================================= =========================================== ========================================
Amazon SES ses+smtp://ACCESS_KEY:SECRET_KEY@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
Google Gmail gmail+smtp://USERNAME:PASSWORD@default n/a n/a
Mailchimp Mandrill mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
Mailgun mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
Mailjet mailjet+smtp://ACCESS_KEY:SECRET_KEY@default n/a mailjet+api://ACCESS_KEY:SECRET_KEY@default
Postmark postmark+smtp://ID:ID@default n/a postmark+api://KEY@default
Sendgrid sendgrid+smtp://apikey:KEY@default n/a sendgrid+api://KEY@default
==================== ============================================= =========================================== ========================================
==================== ==================================================== =========================================== ========================================
Provider SMTP HTTP API
==================== ==================================================== =========================================== ========================================
Amazon SES ses+smtp://ACCESS_KEY:SECRET_KEY@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
Google Gmail gmail+smtp://USERNAME:PASSWORD@default n/a n/a
Mailchimp Mandrill mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
Mailgun mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
Mailjet mailjet+smtp://ACCESS_KEY:SECRET_KEY@default n/a mailjet+api://ACCESS_KEY:SECRET_KEY@default
Postmark postmark+smtp://ID:ID@default n/a postmark+api://KEY@default
Sendgrid sendgrid+smtp://apikey:KEY@default n/a sendgrid+api://KEY@default
Sendinblue sendinblue+smtp://apikey:USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
==================== ==================================================== =========================================== ========================================

.. caution::

Expand Down
0