@@ -100,15 +100,11 @@ binary. For third-party providers, refers to the following table:
100
100
Sendgrid smtp://apikey:KEY@sendgrid n/a api://KEY@sendgrid
101
101
==================== ================================== ================================== ================================
102
102
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
+ -----------------
109
105
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 .
112
108
113
109
A failover transport is configured with two or more transports joined by the
114
110
``|| `` operator::
@@ -119,8 +115,11 @@ The mailer will start using the first transport. If the sending fails, the
119
115
mailer won't retry it with the other transports, but it will switch to the next
120
116
transport automatically for the following deliveries.
121
117
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 .
124
123
125
124
A round-robin transport is configured with two or more transports joined by the
126
125
``&& `` operator::
@@ -181,4 +180,5 @@ Learn More
181
180
To learn more about how to use the mailer component, refer to the
182
181
:doc: `Symfony Framework Mailer documentation </mailer >`.
183
182
183
+ .. _`high availability` : https://en.wikipedia.org/wiki/High_availability
184
184
.. _`load balancing` : https://en.wikipedia.org/wiki/Load_balancing_(computing)
0 commit comments