diff --git a/mailer.rst b/mailer.rst index e109c581adc..66f5b7a2d07 100644 --- a/mailer.rst +++ b/mailer.rst @@ -551,7 +551,7 @@ and headers. framework: mailer: envelope: - sender: 'fabien@example.com' + sender: 'Fabien ' recipients: ['foo@example.com', 'bar@example.com'] headers: From: 'Fabien ' @@ -573,7 +573,7 @@ and headers. - fabien@example.com + Fabien <fabien@example.com> foo@example.com bar@example.com @@ -593,7 +593,7 @@ and headers. $mailer = $framework->mailer(); $mailer ->envelope() - ->sender('fabien@example.com') + ->sender('Fabien ') ->recipients(['foo@example.com', 'bar@example.com']) ;