Can you send email (bcc) to an array of email addresses with phpmailer by doing this:
$emails = array("email1", "email2", "email3", "email4", "email5", "email6", "email7", "email8", "email9", "email10");
$mail->AddBCC($emails);
or do you have to add each email separately with AddBCC like:
$mail->AddBCC($emails1);
$mail->AddBCC($emails2);
$mail->AddBCC($emails3;
also, does the TO array need to be assigned? i basically only want to send an email with BCCs and nothing in the TO field. can this be done, or must i have something in the TO field?
help is much appreciated!