8000 minor #18185 [Mailer] Link to bridges READMEs (alamirault) · symfony/symfony-docs@d8c3c22 · GitHub
[go: up one dir, main page]

Skip to content

Commit d8c3c22

Browse files
committed
minor #18185 [Mailer] Link to bridges READMEs (alamirault)
This PR was merged into the 5.4 branch. Discussion ---------- [Mailer] Link to bridges READMEs #15793 (comment) PR on symfony/symfony#49991 to document DSN in Readme (some options were missing) Commits ------- 5d02675 [Mailer] Link to bridges READMEs
2 parents 8954dec + 5d02675 commit d8c3c22

File tree

1 file changed

+41
-32
lines changed

1 file changed

+41
-32
lines changed

mailer.rst

Lines changed: 41 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -108,18 +108,18 @@ Using a 3rd Party Transport
108108
Instead of using your own SMTP server or sendmail binary, you can send emails
109109
via a third-party provider:
110110

111-
================== ==============================================
112-
Service Install with
113-
================== ==============================================
114-
Amazon SES ``composer require symfony/amazon-mailer``
115-
MailChimp ``composer require symfony/mailchimp-mailer``
116-
Mailgun ``composer require symfony/mailgun-mailer``
117-
Mailjet ``composer require symfony/mailjet-mailer``
118-
OhMySMTP ``composer require symfony/oh-my-smtp-mailer``
119-
Postmark ``composer require symfony/postmark-mailer``
120-
SendGrid ``composer require symfony/sendgrid-mailer``
121-
Sendinblue ``composer require symfony/sendinblue-mailer``
122-
================== ==============================================
111+
===================== ==============================================
112+
Service Install with
113+
===================== ==============================================
114+
`Amazon SES`_ ``composer require symfony/amazon-mailer``
115+
`MailChimp Mandrill`_ ``composer require symfony/mailchimp-mailer``
116+
`Mailgun`_ ``composer require symfony/mailgun-mailer``
117+
`Mailjet`_ ``composer require symfony/mailjet-mailer``
118+
`OhMySMTP`_ ``composer require symfony/oh-my-smtp-mailer``
119+
`Postmark`_ ``composer require symfony/postmark-mailer``
120+
`SendGrid`_ ``composer require symfony/sendgrid-mailer``
121+
`Sendinblue`_ ``composer require symfony/sendinblue-mailer``
122+
===================== ==============================================
123123

124124
.. note::
125125

@@ -174,19 +174,19 @@ transport, but you can force to use one:
174174
This table shows the full list of available DSN formats for each third
175175
party provider:
176176

177-
==================== ==================================================== =========================================== ========================================
178-
Provider SMTP HTTP API
179-
==================== ==================================================== =========================================== ========================================
180-
Amazon SES ses+smtp://USERNAME:PASSWORD@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
181-
Google Gmail gmail+smtp://USERNAME:APP-PASSWORD@default n/a n/a
182-
Mailchimp Mandrill mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
183-
Mailgun mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
184-
Mailjet mailjet+smtp://ACCESS_KEY:SECRET_KEY@default n/a mailjet+api://ACCESS_KEY:SECRET_KEY@default
185-
Postmark postmark+smtp://ID@default 10000 n/a postmark+api://KEY@default
186-
Sendgrid sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
187-
Sendinblue sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
188-
OhMySMTP ohmysmtp+smtp://API_TOKEN@default n/a ohmysmtp+api://API_TOKEN@default
189-
==================== ==================================================== =========================================== ========================================
177+
===================== ==================================================== =========================================== ========================================
178+
Provider SMTP HTTP API
179+
===================== ==================================================== =========================================== ========================================
180+
`Amazon SES`_ ses+smtp://USERNAME:PASSWORD@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
181+
`Google Gmail`_ gmail+smtp://USERNAME:APP-PASSWORD@default n/a n/a
182+
`Mailchimp Mandrill`_ mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
183+
`Mailgun`_ mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
184+
`Mailjet`_ mailjet+smtp://ACCESS_KEY:SECRET_KEY@default n/a mailjet+api://ACCESS_KEY:SECRET_KEY@default
185+
`Postmark`_ postmark+smtp://ID@default n/a postmark+api://KEY@default
186+
`Sendgrid`_ sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
187+
`Sendinblue`_ sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
188+
`OhMySMTP`_ ohmysmtp+smtp://API_TOKEN@default n/a ohmysmtp+api://API_TOKEN@default
189+
===================== ==================================================== =========================================== ========================================
190190

191191
.. caution::
192192

@@ -1586,16 +1586,25 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
15861586
}
15871587
}
15881588

1589-
.. _`high availability`: https://en.wikipedia.org/wiki/High_availability
1590-
.. _`load balancing`: https://en.wikipedia.org/wiki/Load_balancing_(computing)
1589+
.. _`Amazon SES`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Amazon/README.md
1590+
.. _`App Password`: https://support.google.com/accounts/answer/185833
1591+
.. _`default_socket_timeout`: https://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout
1592+
.. _`DKIM`: https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail
15911593
.. _`download the foundation-emails.css file`: https://github.com/foundation/foundation-emails/blob/develop/dist/foundation-emails.css
1594+
.. _`Google Gmail`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Google/README.md
1595+
.. _`high availability`: https://en.wikipedia.org/wiki/High_availability
1596+
.. _`Inky`: https://get.foundation/emails/docs/inky.html
15921597
.. _`league/html-to-markdown`: https://github.com/thephpleague/html-to-markdown
1598+
.. _`load balancing`: https://en.wikipedia.org/wiki/Load_balancing_(computing)
1599+
.. _`MailChimp Mandrill`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailchimp/README.md
1600+
.. _`Mailgun`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailgun/README.md
1601+
.. _`Mailjet`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailjet/README.md
15931602
.. _`Markdown syntax`: https://commonmark.org/
1594-
.. _`Inky`: https://get.foundation/emails/docs/inky.html
1595-
.. _`S/MIME`: https://en.wikipedia.org/wiki/S/MIME
1596-
.. _`DKIM`: https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail
1603+
.. _`OhMySMTP`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/OhMySmtp/README.md
15971604
.. _`OpenSSL PHP extension`: https://www.php.net/manual/en/book.openssl.php
15981605
.. _`PEM encoded`: https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail
1599-
.. _`default_socket_timeout`: https://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout
1606+
.. _`Postmark`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Postmark/README.md
16001607
.. _`RFC 3986`: https://www.ietf.org/rfc/rfc3986.txt
1601-
.. _`App Password`: https://support.google.com/accounts/answer/185833
1608+
.. _`S/MIME`: https://en.wikipedia.org/wiki/S/MIME
1609+
.. _`SendGrid`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendgrid/README.md
1610+
.. _`Sendinblue`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Sendinblue/README.md

0 commit comments

Comments
 (0)
0