i am trying to bcc 2 people on an email form... i can get the form to work but the BCC is not working...using PHP 4.3.1
<?
$to = "$email" . ", " ;
$to .= "$mremail";
$subject = "$name 's request";
$msg = "blah blah blah";
$headers = "From: $email \nReply-To: $email";
$headers .="Bcc: me@my.com \r\nContent-Type: text/html; charset=iso-8859-1";
$config = "-webmaster@mycompany.com";
mail("$to", "$subject", "$msg", "$headers", "$config");
<?
$to = "$email" . ", " ;
$to .= "$mremail";
$subject = "$name 's request";
$msg = "blah blah blah";
$headers = "From: $email \nReply-To: $email";
$headers .="Bcc: me@my.com \r\nContent-Type: text/html; charset=iso-8859-1";
$config = "-webmaster@mycompany.com";
mail("$to", "$subject", "$msg", "$headers", "$config");