2014-07-14 7 views
-2

J'essaie de créer une page "contactez-nous", mais une fois que vous appuyez sur le bouton "envoyer", vous obtenez un courrier "nul" vide sans aucun contenu. Il n'y a pas de "from", "message" ou "subject" dans cet email et je ne trouve pas le problème.Le formulaire de contact envoie un message "nul"?

Voici ce que mon code ressemble, contact.php:

<table width="400" border="0" align="center" cellpadding="3" cellspacing="1"> 
<tr> 
<td><strong>Contact Form </strong></td> 
</tr> 
</table> 
<table width="400" border="0" align="center" cellpadding="0" cellspacing="1"> 
<tr> 
<td><form name="form1" method="post" action="send_contact.php"> 
<table width="100%" border="0" cellspacing="1" cellpadding="3"> 
<tr> 
<td width="16%">Subject</td> 
<td width="2%">:</td> 
<td width="82%"><input name="subject" type="text" id="subject" size="50"></td> 
</tr> 
<tr> 
<td>Detail</td> 
<td>:</td> 
<td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td> 
</tr> 
<tr> 
<td>Name</td> 
<td>:</td> 
<td><input name="name" type="text" id="name" size="50"></td> 
</tr> 
<tr> 
<td>Email</td> 
<td>:</td> 
<td><input name="customer_mail" type="text" id="customer_mail" size="50"></td> 
</tr> 
<tr> 
<td>&nbsp;</td> 
<td>&nbsp;</td> 
<td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td> 
</tr> 
</table> 
</form> 
</td> 
</tr> 
</table> 

send_contact.php:

<?php 

// Contact subject 
$subject ="$subject"; 

// Details 
$message="$detail"; 

// Mail of sender 
$mail_from="$customer_mail"; 

// From 
$header="from: $name <$mail_from>"; 

// Enter your email address 
$to ='[email protected]'; 
$send_contact=mail($to,$subject,$message,$header); 

// Check, if message sent to your email 
// display message "We've recived your information" 
if($send_contact){ 
echo "We've recived your contact information"; 
} 
else { 
echo "ERROR"; 
} 
?> 

Répondre

0

Bonjour essayer de changer votre première ligne de send_contact.php

// Contact subject 
$subject ="$subject"; 

// Details 
$message="$detail"; 

// Mail of sender 
$mail_from="$customer_mail"; 

à:

// Contact subject 
$subject = $_POST['subject']; 

// Details 
$message= $_POST['details']; 

Mais je vous recommande d'essayer celui-ci: http://teachingyou.net/php/simple-php-contact-form-using-ajax/

0

Peut-être que vous voulez quelque chose comme ça

$subject =$_POST['subject']; 

// Details 
$message=$_POST['$detail']; 

// Mail of sender 
$mail_from=$_POST['customer_mail']; 
0

Vous définissez correctement vos vars dans votre fichier send_contact.php.

$subject ="$subject"; 

devrait être

$subject = $_POST['subject']; 

avec vos autres vars. Jetez un oeil aux tutoriels de formulaire et POST/GET/REQUEST pour mieux comprendre ce qui se passe.

Questions connexes