Ok I'll simplify the question: If I do this:
use Mail::Sender;
my $sender = new Mail::Sender {smtp => $ip, from => $frm};
$sender->Open({
to => $to,
subject => $sb,
priority => 5,
cc => $cc,
bcc => $bcc,
confirm => $cfm,
});
$sender->SendLineEnc($msg);
$sender->Close();
If $cc, $bcc, or $cfm are empty will it still work (just ignore them or ???) or error
out?
TIA :)
Dan
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
