in reply to Sending mails to multiple users
my @too = ('address1', 'address2'); ... $smtp->to(@too); [download]
That's right. Or multiple calls to to passing a scalar each time, does the same thing.
$smtp->to($address1); $smtp->to($address2); [download]