Skip to content
Snippets Groups Projects
Commit 72afb166 authored by Thomas Riechert's avatar Thomas Riechert
Browse files

image structure changed

parent 2df2cd43
No related branches found
No related tags found
No related merge requests found
File moved
File moved
img/portfolio/cabin-save.png

35.7 KiB

img/portfolio/cake-save.png

16.7 KiB

img/portfolio/circus-save.png

27.3 KiB

File moved
File moved
img/portfolio/game1.png

25.3 KiB

File moved
File moved
img/portfolio/safe-save.png

18.8 KiB

img/portfolio/submarine-save.png

23.8 KiB

<?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;
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment