onlyme Posted May 30, 2011 Share Posted May 30, 2011 Hi, I have a contact for which I wish to send to multiple recipients as a BCC, but I cannot work it out. I can add them as recipients, but they are not hidden in the email. This is what I have: if(isset($_POST['submit'])){ $name=$_POST['name']; $year=$_POST['year']; $email=$_POST['email']; $subject = 'Hello Admin !'; $message="Name : $name <br> Email : $email <br> Phone : $phone <br> Year : $year"; $recipients ="[email protected], [email protected]"; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $subject="New contact details"; $headers .= 'From: TEST<[email protected]>' . "\r\n"; mail($recipients ,$subject,$message,$headers); header("Location: thankyou.php"); Any ideas what I should do? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/237857-bcc-email-in-contact-form/ Share on other sites More sharing options...
cssfreakie Posted May 30, 2011 Share Posted May 30, 2011 add $headers .= "BCC: [email protected]"; Quote Link to comment https://forums.phpfreaks.com/topic/237857-bcc-email-in-contact-form/#findComment-1222273 Share on other sites More sharing options...
onlyme Posted May 30, 2011 Author Share Posted May 30, 2011 Thank you Quote Link to comment https://forums.phpfreaks.com/topic/237857-bcc-email-in-contact-form/#findComment-1222284 Share on other sites More sharing options...
cssfreakie Posted May 30, 2011 Share Posted May 30, 2011 Thank you your welcome! don't forget to mark the topic solved Quote Link to comment https://forums.phpfreaks.com/topic/237857-bcc-email-in-contact-form/#findComment-1222286 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.