File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ A failover transport is configured with two or more transports and the
210
210
211
211
MAILER_DSN="failover(postmark+api://ID@default sendgrid+smtp://KEY@default)"
212
212
213
- The mailer will start using the first transport and if it fails, it
213
+ The failover-transport starts using the first transport and if it fails, it
214
214
will retry the same delivery with the next transports until one of them succeeds
215
215
(or until all of them fail).
216
216
@@ -227,8 +227,12 @@ A round-robin transport is configured with two or more transports and the
227
227
228
228
MAILER_DSN="roundrobin(postmark+api://ID@default sendgrid+smtp://KEY@default)"
229
229
230
- The round-robin transport is similar to the failover transport (see above), but
231
- it starts with a *randomly * selected transport instead of the first in the list.
230
+ The round-robin transport starts with a *randomly * selected transport and
231
+ then switches to the next available transport for each subsequent email.
232
+
233
+ As with the failover transport, round-robin retries deliveries until
234
+ a transport succeeds (or all failed). In contrast to the failover transport,
235
+ it *balances * the load between all its transports.
232
236
233
237
.. versionadded :: 5.1
234
238
You can’t perform that action at this time.
0 commit comments