File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,9 +102,9 @@ binary. For third-party providers, refers to the following table:
102
102
Failover Transport
103
103
------------------
104
104
105
- You can create failover transport with the help of `|| ` operator ::
105
+ You can create failover transport with the help of `failover() ` keyword ::
106
106
107
- $dsn = 'api://id@postmark || smtp://key@sendgrid';
107
+ $dsn = 'failover( api://id@postmark smtp://key@sendgrid) ';
108
108
109
109
So if the first transport fails, the mailer will attempt to send through the
110
110
second transport.
@@ -113,9 +113,9 @@ Round Robin
113
113
-----------
114
114
115
115
If you want to send emails by using multiple transports in a round-robin fashion,
116
- you can use the ``&& `` operator between the transports::
116
+ you can use the ``roundrobin() `` keyword with the transports::
117
117
118
- $dsn = 'api://id@postmark && smtp://key@sendgrid'
118
+ $dsn = 'roundrobin( api://id@postmark smtp://key@sendgrid) '
119
119
120
120
Sending emails asynchronously
121
121
-----------------------------
You can’t perform that action at this time.
0 commit comments