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 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]"; 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 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 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
Archived
This topic is now archived and is closed to further replies.