c'è nel sito ufficiale (!), comunque:

Codice PHP:
$to 'nobody@example.com';
$subject 'Oggetto';
$message 'Messaggio';
$headers 'From: [email]mittente@example.com[/email]' "\r\n" .
                
'Bcc: [email]destinatarioccn@example.com[/email]' "\r\n";

mail($to$subject$message$headers);