I'm a bit confussed on the FAQ. Where do you define the list of email adrresses or who it should go to?
should it look like:
print MAIL qq~To: "$title" <$testguy@domainname.com>\n~;
# Print the To: field to your mail stream. You can either
# enter the recipient email by itself, or in the standard
# format of Name <address>
print MAIL qq~To: "$title" <$email_addr>\n~;
# If you want to send to a list, send the mail only once,
# but make each address a blind carbon copy.
print MAIL qq~Bcc: ~;
my $address = pop(@LIST);
print MAIL qq~$address~;
foreach $address (@LIST) {print MAIL qq~, $address~;}