@@ -522,6 +522,7 @@ and headers.
522522mailer :
523523envelope :
524524sender :' fabien@example.com'
525+ # sender: 'Fabien <fabien@example.com>' (use this to add a display name)
525526recipients :['foo@example.com', 'bar@example.com']
526527headers :
527528From :' Fabien <fabien@example.com>'
@@ -544,6 +545,8 @@ and headers.
544545 <framework : mailer >
545546 <framework : envelope >
546547 <framework : sender >fabien@example.com</framework : sender >
548+ <!-- use this to add a display name:
549+ <framework:sender>Fabien <fabien@example.com></framework:sender>-->
547550 <framework : recipients >foo@example.com</framework : recipients >
548551 <framework : recipients >bar@example.com</framework : recipients >
549552 </framework : envelope >
@@ -564,6 +567,7 @@ and headers.
564567 $mailer
565568 ->envelope()
566569 ->sender('fabien@example.com')
570+ // ->sender('Fabien <fabien @example.com >') (use this to add a display name)
567571 ->recipients(['foo@example.com', 'bar@example.com'])
568572 ;
569573