http://www.perlmonks.org?node_id=859648

kamal has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I want to be able to send email to multiple email addresses in
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 } );
is it possible to write: From => '"Someone1" <some@somewhere.com>', '"Someone2" <some2@somewhere.com>' Thanks, -Kamal.