Skip to content

Commit 6018e38

Browse files
committed
minor #12322 Fixed some explanations in the mailer component (javiereguiluz)
This PR was merged into the 4.3 branch. Discussion ---------- Fixed some explanations in the mailer component This fixes some mistakes introduced in #12301 because "failover" is not a "load balancing" technique but a "high availability" one. Commits ------- 27e46a7 Fixed some explanations in the mailer component
2 parents de1f9a8 + 27e46a7 commit 6018e38

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
@@ -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

113109
A 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
119115
mailer won't retry it with the other transports, but it will switch to the next
120116
transport 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

125124
A round-robin transport is configured with two or more transports joined by the
126125
``&&`` operator::
@@ -181,4 +180,5 @@ Learn More
181180
To 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

Comments
 (0)