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:
102102Failover Transport
103103------------------
104104
105- You can create failover transport with the help of `|| ` operator ::
105+ You can create failover transport with the help of `failover() ` keyword ::
106106
107- $dsn = 'api://id@postmark || smtp://key@sendgrid';
107+ $dsn = 'failover( api://id@postmark smtp://key@sendgrid) ';
108108
109109So if the first transport fails, the mailer will attempt to send through the
110110second transport.
@@ -113,9 +113,9 @@ Round Robin
113113-----------
114114
115115If 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::
117117
118- $dsn = 'api://id@postmark && smtp://key@sendgrid'
118+ $dsn = 'roundrobin( api://id@postmark smtp://key@sendgrid) '
119119
120120Sending emails asynchronously
121121-----------------------------
You can’t perform that action at this time.
0 commit comments