I use php mailer to send email, and very simple, I use the following line:
// Destinatório e cópia oculta
$email->AddBCC('[email protected]', 'hugo');
But I wanted to know how do I send an email to multiple people in an array?
Could someone give me an example?