qui hai le varie possibilità: nel TO, in CC o in BCC

codice:
$headers  = '';
$headers .= "To: xxx@xxx.com\r\n";
$headers .= "From: yyy@yyy.com\r\n";
$headers .= "Cc: zzz@zzz.it\r\n";
$headers .= "Bcc: xyz@xyz.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";

$to = 'sgnaps@sgrunt.com, frust@gnopp.com';
$corpo = 'TESTING MAIL SENDER';
$subject = 'PROVA';

//invio la mail e stampo il form a video
$formsent = mail($to, $subject, $corpo, $headers);

if ($formsent) { echo 'OK'; }
else { echo "Si sono verificati dei problemi durante l'invio del form; ESEGUIRE NUOVAMENTE LA PROCEDURA!"; }



r@p