Site Feedback Form
Please fill out the form below
to send an email to our webmaster
";
// More complicated "FROM" field that has name
syntax
$test = mail($to,$subject,$message,$headers);
if ($test == 1) {
echo "Thank You. Your email was sent.";
echo "
(Server response: " . $test . ") ";
echo "
Email string:" . "mail($to,$subject,$message,$headers)";
} else {
echo "ERROR. |" , $test . "| Your email was not sent.";
// probably should send email to webmaster that there was a problem.
}
exit();
}
?>