@@ -111,15 +111,11 @@ a service like ``requestbin.com``), change ``default`` by your host:
111
111
112
112
Note that the protocol is *always * HTTPs and cannot be changed.
113
113
114
- Load Balancing
115
- --------------
116
-
117
- Symfony's mailer supports `load balancing `_ so you can distribute the mailing
118
- workload across multiple transports. There are two main techniques to balance
119
- the load: failover and round-robin.
114
+ High Availability
115
+ -----------------
120
116
121
- Failover Load Balancing
122
- ~~~~~~~~~~~~~~~~~~~~~~~
117
+ Symfony's mailer supports ` high availability `_ via a technique called "failover"
118
+ to ensure that emails are sent even if one mailer server fails .
123
119
124
120
A failover transport is configured with two or more transports and the
125
121
``failover `` keyword::
@@ -130,8 +126,11 @@ The mailer will start using the first transport. If the sending fails, the
130
126
mailer won't retry it with the other transports, but it will switch to the next
131
127
transport automatically for the following deliveries.
132
128
133
- Round-Robin Load Balancing
134
- ~~~~~~~~~~~~~~~~~~~~~~~~~~
129
+ Load Balancing
130
+ --------------
131
+
132
+ Symfony's mailer supports `load balancing `_ via a technique called "round-robin"
133
+ to distribute the mailing workload across multiple transports .
135
134
136
135
A round-robin transport is configured with two or more transports and the
137
136
``roundrobin `` keyword::
@@ -192,4 +191,5 @@ Learn More
192
191
To learn more about how to use the mailer component, refer to the
193
192
:doc: `Symfony Framework Mailer documentation </mailer >`.
194
193
194
+ .. _`high availability` : https://en.wikipedia.org/wiki/High_availability
195
195
.. _`load balancing` : https://en.wikipedia.org/wiki/Load_balancing_(computing)
0 commit comments