codice:
<?php
function send_mail($myname, $myemail, $contactname, $contactemail, $subject, $message, $bcc) {

   $headers .= "MIME-Version: 1.0\n";
   $headers .= "Content-type: text/html; charset=iso-8859-1\n";
   $headers .= "From: \"".$myname."\" <".$myemail.">\n";
      
   if ($bcc != "")
       $headers .= "Bcc: ".$bcc."\n";   
   $output = $message;                $output = wordwrap($output, 72);
   return(mail("\"".$contactname."\" <".$contactemail.">", $subject, $output, $headers));
}
?>
usa questa funzione..