Skip to content

[Mailer] Improve DSN formats table #18382

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
Jun 8, 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
57 changes: 43 additions & 14 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,49 @@ 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://USERNAME:PASSWORD@default ses+https://ACCESS_KEY:SECRET_KEY@default ses+api://ACCESS_KEY:SECRET_KEY@default
`Google Gmail`_ gmail+smtp://USERNAME:APP-PASSWORD@default n/a n/a
`Infobip`_ infobip+smtp://KEY@default n/a infobip+api://KEY@BASE_URL
`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
`MailPace`_ mailpace+api://API_TOKEN@default n/a mailpace+api://API_TOKEN@default
`Postmark`_ postmark+smtp://ID@default n/a postmark+api://KEY@default
`Sendgrid`_ sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
`Sendinblue`_ sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
===================== ==================================================== =========================================== ========================================
+------------------------+-----------------------------------------------------+
| Provider | Formats |
+========================+=====================================================+
| `Amazon SES`_ | - SMTP ses+smtp://USERNAME:PASSWORD@default |
| | - HTTP ses+https://ACCESS_KEY:SECRET_KEY@default |
| | - API ses+api://ACCESS_KEY:SECRET_KEY@default |
+------------------------+-----------------------------------------------------+
| `Google Gmail`_ | - SMTP gmail+smtp://USERNAME:APP-PASSWORD@default |
| | - HTTP n/a |
| | - API n/a |
+------------------------+-----------------------------------------------------+
| `Infobip`_ | - SMTP infobip+smtp://KEY@default |
| | - HTTP n/a |
| | - API infobip+api://KEY@BASE_URL |
+------------------------+-----------------------------------------------------+
| `Mailchimp Mandrill`_ | - SMTP mandrill+smtp://USERNAME:PASSWORD@default |
| | - HTTP mandrill+https://KEY@default |
| | - API mandrill+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Mailgun`_ | - SMTP mailgun+smtp://USERNAME:PASSWORD@default |
| | - HTTP mailgun+https://KEY:DOMAIN@default |
| | - API mailgun+api://KEY:DOMAIN@default |
+------------------------+-----------------------------------------------------+
| `Mailjet`_ | - SMTP mailjet+smtp://ACCESS_KEY:SECRET_KEY@default |
| | - HTTP n/a |
| | - API mailjet+api://ACCESS_KEY:SECRET_KEY@default |
+------------------------+-----------------------------------------------------+
| `MailPace`_ | - SMTP mailpace+api://API_TOKEN@default |
| | - HTTP n/a |
| | - API mailpace+api://API_TOKEN@default |
+------------------------+-----------------------------------------------------+
| `Postmark`_ | - SMTP postmark+smtp://ID@default |
| | - HTTP n/a |
| | - API postmark+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Sendgrid`_ | - SMTP sendgrid+smtp://KEY@default |
| | - HTTP n/a |
| | - API sendgrid+api://KEY@default |
+------------------------+-----------------------------------------------------+
| `Sendinblue`_ | - SMTP sendinblue+smtp://USERNAME:PASSWORD@default |
| | - HTTP n/a |
| | - API sendinblue+api://KEY@default |
+------------------------+-----------------------------------------------------+

.. caution::

Expand Down