Mail contact

Résolu/Fermé
recan93 Messages postés 36 Date d'inscription samedi 4 mai 2013 Statut Membre Dernière intervention 25 janvier 2015 - 25 janv. 2015 à 20:02
Zephirr Messages postés 317 Date d'inscription mardi 30 décembre 2014 Statut Membre Dernière intervention 6 novembre 2015 - 25 janv. 2015 à 20:38
Bonjours a tous,
Voici mon code pour la page "contactez-nous" , je sais pas le ceci avec :(
<?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 = $_POST['name'];
   $email_address = $_POST['email'];
   $phone = $_POST['phone'];
   $message = $_POST['message'];
   	
   // Create the email and send the message
   $to = '93naciri@gmail.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
   $email_subject = "Location 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;			
?>
A voir également:

1 réponse

Zephirr Messages postés 317 Date d'inscription mardi 30 décembre 2014 Statut Membre Dernière intervention 6 novembre 2015 100
25 janv. 2015 à 20:38
Pourquoi des
return
?

Pour insérer des variables dans une chaine :
"ABCD".$a."efgh"
0