Jump to content

bcc email in contact form


onlyme

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.