<?php $email_address = filter_var($_POST, FILTER_VALIDATE_EMAIL);

// Check for empty fields if(empty($_POST) ||

empty($_POST['email'])               ||
empty($_POST['phone'])               ||
empty($_POST['message'])     ||
!$email_address)
{
     echo "No arguments Provided!";
     return false;
}

$name = $_POST; if ($email_address === FALSE) {

echo 'Invalid email';
exit(1);

} $phone = $_POST; $message = $_POST;

// Create the email and send the message $to = 'yourname@yourdomain.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to. $email_subject = “Website Contact Form: $name”; $email_body = “You have received a new message from your website contact form.nn”.“Here are the details:nnName: $namennEmail: $email_addressnnPhone: $phonennMessage:n$message”; $headers = “From: noreply@yourdomain.comn”; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com. $headers .= “Reply-To: $email_address”; mail($to,$email_subject,$email_body,$headers); return true; ?>