1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?php
$nom_etp=$_POST['nom_etp'];
$mail_exp=$_POST['mail'];
$message=$_POST['texte'];
$destinataire='mail_destinataire@fai.fr'; $message='<html><head><title>Question</title></head><body>'.$message.'</body></html>';
$headers ='From: "nom"<'.$mail_exp.'>'."\n";
$headers .='Reply-To:'.$destinataire.''."\n";
$headers .='Content-Type: text/plain; charset="iso-8859-1"'."\n";
$headers .='Content-Transfer-Encoding: 8bit';
$sujet='Question envoyée à partir de la newsletter par l\'entreprise '.$nom_etp;
$destinataire='mail_destinataire@fai.fr';
if(mail($destinataire,$sujet,$message,$headers))
{
echo 'Le message a bien été envoyé';
}
else
{
echo 'Le message n\'a pu être envoyé';
}
?> |