27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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 "Completer tous les champs";
 | 
						|
	return false;
 | 
						|
   }
 | 
						|
 | 
						|
$name = $_POST['name'];
 | 
						|
$email_address = $_POST['email'];
 | 
						|
$phone = $_POST['phone'];
 | 
						|
$message = $_POST['message'];
 | 
						|
 | 
						|
// Create the email and send the message
 | 
						|
$to = 'contact@lalis.fr'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
 | 
						|
$email_subject = "[Site] Contact de:  $name";
 | 
						|
$email_body = "Vous avez recu un message depuis le formulaire du site.\n\n"."Voici les details:\n\nNom: $name\n\nEmail: $email_address\n\nTelephone: $phone\n\nMessage:\n$message";
 | 
						|
$headers = "From: noreply@lalis.fr\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;
 | 
						|
?>
 |