is_valid) {
// What happens when the CAPTCHA was entered incorrectly
die (“The reCAPTCHA wasn’t entered correctly. Go back and try it again.”);
} else {
//check all fields are filled in
if (!$name) $error_msg = “Please provide your name. “;
if (!$email) $error_msg .= “Please provide your email. “;
if (!$comment) $error_msg .= “Please provide your comment.”;
if (!$error_msg) {
$message = “Message from: ” . $name . “\r\nComment: \r\n” . $comment;
//send message to Barbara
$headers = ‘From: ‘ . $email . “\r\n”;
$to = “barbara@attentionology.com”;
$subject = “Message from Attentionology Website”;
mail($to, $subject, $message, $headers);
$location = “http://www.attentionology.com/success”;
// redirect after header definitions;
?>
Use this form to send an email to Attentionology.
