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 1b67e22 + fb7df00 commit fb57e4eCopy full SHA for fb57e4e
mailer.rst
@@ -303,12 +303,13 @@ both strings or address objects::
303
:class:`Symfony\\Component\\Mailer\\Event\\MessageEvent` event to set the
304
same ``From`` email to all messages.
305
306
-Multiple addresses are defined with the ``addXXX()`` methods::
+Use ``addTo()``, ``addCc()``, or ``addBcc()`` methods to add more addresses::
307
308
$email = (new Email())
309
->to('foo@example.com')
310
->addTo('bar@example.com')
311
- ->addTo('baz@example.com')
+ ->cc('cc@example.com')
312
+ ->addCc('cc2@example.com')
313
314
// ...
315
;
0 commit comments