Skip to content

Commit 8127e8a

Browse files
committed
Merge branch '4.4'
* 4.4: Fixed some explanations in the mailer component
2 parents da18b33 + 40d156e commit 8127e8a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

components/mailer.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,11 @@ a service like ``requestbin.com``), change ``default`` by your host:
111111
112112
Note that the protocol is *always* HTTPs and cannot be changed.
113113

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+
-----------------
120116

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 .
123119

124120
A failover transport is configured with two or more transports and the
125121
``failover`` keyword::
@@ -130,8 +126,11 @@ The mailer will start using the first transport. If the sending fails, the
130126
mailer won't retry it with the other transports, but it will switch to the next
131127
transport automatically for the following deliveries.
132128

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 .
135134

136135
A round-robin transport is configured with two or more transports and the
137136
``roundrobin`` keyword::
@@ -192,4 +191,5 @@ Learn More
192191
To learn more about how to use the mailer component, refer to the
193192
:doc:`Symfony Framework Mailer documentation </mailer>`.
194193

194+
.. _`high availability`: https://en.wikipedia.org/wiki/High_availability
195195
.. _`load balancing`: https://en.wikipedia.org/wiki/Load_balancing_(computing)

0 commit comments

Comments
 (0)