I am trying to get my contact form to work, but when I fill out the form, it throws out a server not responding error.
You can view the JSFiddle here: JS & HTML contact form code
The contact_me.php code:
<?php
error_reporting(E_ALL); ini_set('display_errors', 1);
// check if fields passed are empty
if(empty($_POST['name']) ||
empty($_POST['email']) ||
empty($_POST['phone']) ||
empty($_POST['message']) ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}
$name = $_POST['name'];
$email_address = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];
// create email body and send it
$to = 'trisha@trishajohnson.net'; // put your email
$email_subject = "Contact form submitted by: $name";
$email_body = "You have received a new message. \n\n".
" Here are the details:\n \nName: $name \n ".
"Email: $email_address\n Phone: $phone\n Message: \n $message";
$headers = "From: no-reply@trishajohnson.net\n";
$headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
return true;
?>
I don't see any errors in any of the code, so I'm not quite sure what the issue is.