voila mon code j'ai juste enlevé les adresse mail (parano je c)
<?php
if($_POST['action'] == 'submitted')
{
require("../phpmailer/class.phpmailer.php" );
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp.serveur.com"; // specify main and backup server
$mail->SMTPAuth = false; // turn on SMTP authentication
$mail->From = "from@adresse.fr";
$mail->AddAddress("mon@adresse.fr" ); // name is optional
$mail->AddReplyTo("mon@adresse.fr", "monnom" );
$mail->WordWrap = 50; // set word wrap to 50 characters
// add attachments
// optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Rapeller moi";
$mail->Body = "Nom: <b>{$_POST['nom']}</b>\nPrénom: <b>{$_POST['prenom']}</b>\nE-mail: <b>{$_POST['email']}</b>\nHoraire pour rapel: <b>{$_POST['horaire']}</b>\nTel: <b>{$_POST['phone']}</b>\n
Renseignements: <b>{$_POST['renseignements']}</b>\nType de renseignements: <b>{$_POST['type']}</b>\n";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>On vous rappel</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="forml" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >
<table align="center" border="0" cellspacing="2" cellpadding="0">
<tr><td align="right">Nom : </td><td><input type="text" name="nom" size="32"></td>
</tr>
<tr>
<td align="right">Prénom : </td>
<td><input name="prenom" type="text" size="32"></td>
</tr>
<tr><td align="right">E-mail : </td><td><input name="email" type="text" value="" size="32">
</td>
</tr>
<tr>
<td align="right">Horaire pour vous rappeler : </td><td><input name="horaire" type="text" size="32"></td>
</tr>
<tr>
<td align="right">Téléphone : </td><td><input type="text" name="phone" size="32"></td>
</tr>
<tr>
<td align="right">Renseignements : </td><td><input type="text" name="renseignements" size="32"></td>
</tr>
<tr>
<td align="right">Type de renseignements : </td>
<td><p><label>
<input type="radio" name="type" value="occasion">
occasion</label>
<br>
<label>
<input type="radio" name="type" value="neuf">
neuf</label>
<br>
<label>
<input type="radio" name="type" value="autre">
autre</label>
<br>
<label></label>
</p>
</td>
</tr>
</table>
<p align="center">
<input type="hidden" name="action" value="submitted">
<input type="submit" name="Submit" value="Envoyer">
</p>
</form>
</body>
</html>