Question: How can I Bcc, Cc or send mail to multiple recipients using the following code.
use Net::SMTP;
# Send the message and disconnect
$smtp=Net::SMTP->new('$host');
$smtp->mail($from);
$smtp->recipient($to);
$smtp->data("Subject: $subject\r\n$body");
$smtp->quit;
-thanks-