Skip to content

Commit 99b6451

Browse files
committed
minor #19634 [Mailer] Format dsn in documentation (MrYamous)
This PR was merged into the 6.4 branch. Discussion ---------- [Mailer] Format dsn in documentation DSN were formatted in 5.x branch and in Notifier documentation and I think there is no point in clicking on it Commits ------- 93a3d05 format dsn in mailer documentation
2 parents cb7c083 + 93a3d05 commit 99b6451

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed

mailer.rst

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -173,57 +173,57 @@ transport, but you can force to use one:
173173
This table shows the full list of available DSN formats for each third
174174
party provider:
175175

176-
+------------------------+-----------------------------------------------------+
177-
| Provider | Formats |
178-
+========================+=====================================================+
179-
| `Amazon SES`_ | - SMTP ses+smtp://USERNAME:PASSWORD@default |
180-
| | - HTTP ses+https://ACCESS_KEY:SECRET_KEY@default |
181-
| | - API ses+api://ACCESS_KEY:SECRET_KEY@default |
182-
+------------------------+-----------------------------------------------------+
183-
| `Brevo`_ | - SMTP brevo+smtp://USERNAME:PASSWORD@default |
184-
| | - HTTP n/a |
185-
| | - API brevo+api://KEY@default |
186-
+------------------------+-----------------------------------------------------+
187-
| `Google Gmail`_ | - SMTP gmail+smtp://USERNAME:APP-PASSWORD@default |
188-
| | - HTTP n/a |
189-
| | - API n/a |
190-
+------------------------+-----------------------------------------------------+
191-
| `Infobip`_ | - SMTP infobip+smtp://KEY@default |
192-
| | - HTTP n/a |
193-
| | - API infobip+api://KEY@BASE_URL |
194-
+------------------------+-----------------------------------------------------+
195-
| `Mandrill`_ | - SMTP mandrill+smtp://USERNAME:PASSWORD@default |
196-
| | - HTTP mandrill+https://KEY@default |
197-
| | - API mandrill+api://KEY@default |
198-
+------------------------+-----------------------------------------------------+
199-
| `MailerSend`_ | - SMTP mailersend+smtp://KEY@default |
200-
| | - HTTP n/a |
201-
| | - API mailersend+api://KEY@BASE_URL |
202-
+------------------------+-----------------------------------------------------+
203-
| `Mailgun`_ | - SMTP mailgun+smtp://USERNAME:PASSWORD@default |
204-
| | - HTTP mailgun+https://KEY:DOMAIN@default |
205-
| | - API mailgun+api://KEY:DOMAIN@default |
206-
+------------------------+-----------------------------------------------------+
207-
| `Mailjet`_ | - SMTP mailjet+smtp://ACCESS_KEY:SECRET_KEY@default |
208-
| | - HTTP n/a |
209-
| | - API mailjet+api://ACCESS_KEY:SECRET_KEY@default |
210-
+------------------------+-----------------------------------------------------+
211-
| `MailPace`_ | - SMTP mailpace+api://API_TOKEN@default |
212-
| | - HTTP n/a |
213-
| | - API mailpace+api://API_TOKEN@default |
214-
+------------------------+-----------------------------------------------------+
215-
| `Postmark`_ | - SMTP postmark+smtp://ID@default |
216-
| | - HTTP n/a |
217-
| | - API postmark+api://KEY@default |
218-
+------------------------+-----------------------------------------------------+
219-
| `Scaleway`_ | - SMTP scaleway+smtp://PROJECT_ID:API_KEY@default |
220-
| | - HTTP n/a |
221-
| | - API scaleway+api://PROJECT_ID:API_KEY@default |
222-
+------------------------+-----------------------------------------------------+
223-
| `Sendgrid`_ | - SMTP sendgrid+smtp://KEY@default |
224-
| | - HTTP n/a |
225-
| | - API sendgrid+api://KEY@default |
226-
+------------------------+-----------------------------------------------------+
176+
+------------------------+---------------------------------------------------------+
177+
| Provider | Formats |
178+
+========================+=========================================================+
179+
| `Amazon SES`_ | - SMTP ``ses+smtp://USERNAME:PASSWORD@default`` |
180+
| | - HTTP ``ses+https://ACCESS_KEY:SECRET_KEY@default`` |
181+
| | - API ``ses+api://ACCESS_KEY:SECRET_KEY@default`` |
182+
+------------------------+---------------------------------------------------------+
183+
| `Brevo`_ | - SMTP ``brevo+smtp://USERNAME:PASSWORD@default`` |
184+
| | - HTTP n/a |
185+
| | - API ``brevo+api://KEY@default`` |
186+
+------------------------+---------------------------------------------------------+
187+
| `Google Gmail`_ | - SMTP ``gmail+smtp://USERNAME:APP-PASSWORD@default`` |
188+
| | - HTTP n/a |
189+
| | - API n/a |
190+
+------------------------+---------------------------------------------------------+
191+
| `Infobip`_ | - SMTP ``infobip+smtp://KEY@default`` |
192+
| | - HTTP n/a |
193+
| | - API ``infobip+api://KEY@BASE_URL`` |
194+
+------------------------+---------------------------------------------------------+
195+
| `Mandrill`_ | - SMTP ``mandrill+smtp://USERNAME:PASSWORD@default`` |
196+
| | - HTTP ``mandrill+https://KEY@default`` |
197+
| | - API ``mandrill+api://KEY@default`` |
198+
+------------------------+---------------------------------------------------------+
199+
| `MailerSend`_ | - SMTP ``mailersend+smtp://KEY@default`` |
200+
| | - HTTP n/a |
201+
| | - API ``mailersend+api://KEY@BASE_URL`` |
202+
+------------------------+---------------------------------------------------------+
203+
| `Mailgun`_ | - SMTP ``mailgun+smtp://USERNAME:PASSWORD@default`` |
204+
| | - HTTP ``mailgun+https://KEY:DOMAIN@default`` |
205+
| | - API ``mailgun+api://KEY:DOMAIN@default`` |
206+
+------------------------+---------------------------------------------------------+
207+
| `Mailjet`_ | - SMTP ``mailjet+smtp://ACCESS_KEY:SECRET_KEY@default`` |
208+
| | - HTTP n/a |
209+
| | - API ``mailjet+api://ACCESS_KEY:SECRET_KEY@default`` |
210+
+------------------------+---------------------------------------------------------+
211+
| `MailPace`_ | - SMTP ``mailpace+api://API_TOKEN@default`` |
212+
| | - HTTP n/a |
213+
| | - API ``mailpace+api://API_TOKEN@default`` |
214+
+------------------------+---------------------------------------------------------+
215+
| `Postmark`_ | - SMTP ``postmark+smtp://ID@default`` |
216+
| | - HTTP n/a |
217+
| | - API ``postmark+api://KEY@default`` |
218+
+------------------------+---------------------------------------------------------+
219+
| `Scaleway`_ | - SMTP ``scaleway+smtp://PROJECT_ID:API_KEY@default`` |
220+
| | - HTTP n/a |
221+
| | - API ``scaleway+api://PROJECT_ID:API_KEY@default`` |
222+
+------------------------+---------------------------------------------------------+
223+
| `Sendgrid`_ | - SMTP ``sendgrid+smtp://KEY@default`` |
224+
| | - HTTP n/a |
225+
| | - API ``sendgrid+api://KEY@default`` |
226+
+------------------------+---------------------------------------------------------+
227227

228228
.. versionadded:: 6.3
229229

0 commit comments

Comments
 (0)