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 @@ -186,9 +186,9 @@ A failover transport is configured with two or more transports and the
186
186
187
187
MAILER_DSN="failover(postmark+api://ID@default sendgrid+smtp://KEY@default)"
188
188
189
- The mailer will start using the first transport. If the sending fails, the
190
- mailer won't retry it with the other transports, but it will switch to the next
191
- transport automatically for the following deliveries .
189
+ The failover-transport starts using the first transport and if it fails, it
190
+ will retry the same delivery with the next transports until one of them succeeds
191
+ (or until all of them fail) .
192
192
193
193
Load Balancing
194
194
~~~~~~~~~~~~~~
@@ -203,9 +203,12 @@ A round-robin transport is configured with two or more transports and the
203
203
204
204
MAILER_DSN="roundrobin(postmark+api://ID@default sendgrid+smtp://KEY@default)"
205
205
206
- The mailer will start using the first transport and if it fails, it will retry
207
- the same delivery with the next transports until one of them succeeds (or until
208
- all of them fail).
206
+ The round-robin transport starts with a *randomly * selected transport and
207
+ then switches to the next available transport for each subsequent email.
208
+
209
+ As with the failover transport, round-robin retries deliveries until
210
+ a transport succeeds (or all fail). In contrast to the failover transport,
211
+ it *spreads * the load across all its transports.
209
212
210
213
Creating & Sending Messages
211
214
---------------------------
You can’t perform that action at this time.
0 commit comments