@@ -100,15 +100,11 @@ binary. For third-party providers, refers to the following table:
100100 Sendgrid smtp://apikey:KEY@sendgrid n/a api://KEY@sendgrid
101101==================== ================================== ================================== ================================
102102
103- Load Balancing
104- --------------
105-
106- Symfony's mailer supports `load balancing `_ so you can distribute the mailing
107- workload across multiple transports. There are two main techniques to balance
108- the load: failover and round-robin.
103+ High Availability
104+ -----------------
109105
110- Failover Load Balancing
111- ~~~~~~~~~~~~~~~~~~~~~~~
106+ Symfony's mailer supports ` high availability `_ via a technique called "failover"
107+ to ensure that emails are sent even if one mailer server fails .
112108
113109A failover transport is configured with two or more transports joined by the
114110``|| `` operator::
@@ -119,8 +115,11 @@ The mailer will start using the first transport. If the sending fails, the
119115mailer won't retry it with the other transports, but it will switch to the next
120116transport automatically for the following deliveries.
121117
122- Round-Robin Load Balancing
123- ~~~~~~~~~~~~~~~~~~~~~~~~~~
118+ Load Balancing
119+ --------------
120+
121+ Symfony's mailer supports `load balancing `_ via a technique called "round-robin"
122+ to distribute the mailing workload across multiple transports .
124123
125124A round-robin transport is configured with two or more transports joined by the
126125``&& `` operator::
@@ -181,4 +180,5 @@ Learn More
181180To learn more about how to use the mailer component, refer to the
182181:doc: `Symfony Framework Mailer documentation </mailer >`.
183182
183+ .. _`high availability` : https://en.wikipedia.org/wiki/High_availability
184184.. _`load balancing` : https://en.wikipedia.org/wiki/Load_balancing_(computing)
0 commit comments