I have a contact form in my website. I need users to send messages to my mail, of which it does...I also have a checkbox when checked the users will have the message to the email indicated on the email textbox. My code sends only to my email, but doesnt send a copy when the checkbox is checked.
Contact.html
<input type="checkbox" name="sendcopy" value="Yes" checked/>Copy this message to your mail
Sendmail.php:
$messagebody="Name: ".$name."".PHP_EOL;
$messagebody.="email: ".$email."".PHP_EOL;
$messagebody.="website: ".$website."".PHP_EOL;
$messagebody.="message: ".nl2br($message)."".PHP_EOL;
mail($to,$subject,$messagebody,$headers)or die("The message failed to send");
if(isset($_POST["sendcopy"]) && $_POST["sendcopy"]=="checked"){
mail($email,$subject,$messagebody,$headers)or die("The message failed to send a copy")
}
mailtwice? Can't you just add the sender to the BCC? – GigaWatt Nov 8 '12 at 16:07