diff options
author | Noah Jewell <njewe42@tscstudents.net> | 2017-04-11 19:44:23 +0000 |
---|---|---|
committer | Noah Jewell <njewe42@tscstudents.net> | 2017-04-11 19:44:23 +0000 |
commit | fbc76d1a8b4a0a456a7fef024a83c851b7feb3e3 (patch) | |
tree | 905672defc0c5068a16d4ad88e4d306d3f0c42aa /mail | |
parent | 7d0b9255584abaf1bc0d9610281ed84826f99328 (diff) |
Upload new file
Diffstat (limited to 'mail')
-rw-r--r-- | mail/contact_me.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mail/contact_me.php b/mail/contact_me.php new file mode 100644 index 0000000..9770270 --- /dev/null +++ b/mail/contact_me.php @@ -0,0 +1,26 @@ +<?php +// Check for empty fields +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 = strip_tags(htmlspecialchars($_POST['name'])); +$email_address = strip_tags(htmlspecialchars($_POST['email'])); +$phone = strip_tags(htmlspecialchars($_POST['phone'])); +$message = strip_tags(htmlspecialchars($_POST['message'])); + +// 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.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message"; +$headers = "From: noreply@yourdomain.com\n"; // 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; +?> |