kamal has asked for the wisdom of the Perl Monks concerning the following question:
is it possible to write: From => '"Someone1" <some@somewhere.com>', '"Someone2" <some2@somewhere.com>' Thanks, -Kamal.my $email = Email::Simple->create( header => [ To => '"My Name" <myname@something +.com>', From => '"Someone1" <some@somewhere. +com>', Subject => $subject, ], body => $body ); sendmail( $email, { transport => $transport } );
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: How can i send email to Multiple email addresses using Email::Simple
by merlyn (Sage) on Sep 10, 2010 at 16:50 UTC | |
Re: How can i send email to Multiple email addresses using Email::Simple
by JavaFan (Canon) on Sep 10, 2010 at 15:04 UTC | |
Re: How can i send email to Multiple email addresses using Email::Simple
by tune (Curate) on Sep 11, 2010 at 11:03 UTC |