sorry, I have another problem now. I'm using a new php form method than I previously used.
I have something like this:
<?php
$ToEmail = '[email protected]';
$subject = 'Contact Form';
$mailheader = "From: ".$_POST["email"]."\r\n";
$mailheader .= "Reply-To: ".$_POST["email"]."\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
$message = "Name: ".$_POST["name"]."<br>";
$message .= "Subject: ".$_POST["subject"]."<br>";
$message .= "Email: ".$_POST["email"]."<br>";
$message .= "Message: ".nl2br($_POST["message"])."<br>";
mail($ToEmail, $subject, $message, $mailheader) or die ("Failure");
but I need to include check boxes. I originally had: $check .= implode(', ', $_POST['check']); from someone else on here but that doesn't work now and not sure what else to do for this. Any help would be appreciated!
the page is located here: http://makeupbysherry.com/contact.php