File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -210,9 +210,9 @@ 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. If the sending fails, the
214
- mailer won't retry it with the other transports, but it will switch to the next
215
- transport automatically for the following deliveries .
213
+ The failover-transport starts using the first transport and if it fails, it
214
+ will retry the same delivery with the next transports until one of them succeeds
215
+ (or until all of them fail) .
216
216
217
217
Load Balancing
218
218
~~~~~~~~~~~~~~
@@ -227,9 +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 mailer will start using a randomly selected transport and if it fails, it
231
- will retry the same delivery with the next transports until one of them succeeds
232
- (or until all of them fail).
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 fail). In contrast to the failover transport,
235
+ it *spreads * the load across all its transports.
233
236
234
237
.. versionadded :: 5.1
235
238
You can’t perform that action at this time.
0 commit comments