We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6fdcd5 + fb57e4e commit 155c190Copy full SHA for 155c190
mailer.rst
@@ -327,12 +327,13 @@ both strings or address objects::
327
328
Support for UTF-8 characters in email addresses was introduced in Symfony 5.2.
329
330
-Multiple addresses are defined with the ``addXXX()`` methods::
+Use ``addTo()``, ``addCc()``, or ``addBcc()`` methods to add more addresses::
331
332
$email = (new Email())
333
->to('foo@example.com')
334
->addTo('bar@example.com')
335
- ->addTo('baz@example.com')
+ ->cc('cc@example.com')
336
+ ->addCc('cc2@example.com')
337
338
// ...
339
;
0 commit comments