I want to be able to send email to multiple email addresses in:
my $email = Email::Simple->create(
    header => [
        To      => '"My Name" <[email protected]>',
        From    => '"Someone1" <[email protected]>',
        Subject => $subject,
    ],
    body => $body
);
sendmail($email, {transport => $transport});
Is it possible to write:
From => '"Someone1" <[email protected]>', '"Someone2" <[email protected]>'