if(isset($_POST['submit']))
{
$name = $_POST['name'];
$email = $_POST['email'];
$stuff = $_POST['stuff'];
$human = $_POST['human'];
if ($human != "123") {
echo "";
echo '';
exit;
}
$to_email = "you@yourdomain.com";
$subject = "$name wanted to tell you something";
$msg = "$name wanted to let you know $stuff
Email them at $email to answer!";
$mailheaders = "From: $email\n";
$mailheaders .= "Reply-To: $email\n";
$mailheaders .= "Return-Path: $email\n";
$mailheaders .= "Content-type: text/html\n\n";
mail($to_email, $subject, $msg, $mailheaders);
echo "";
echo '';
exit;
} else {
$form = '