CharSet = 'UTF-8'; // Selection du protocole SMTP // $mail->isSMTP(); //Enable SMTP debugging // 0 = off (for production use) // 1 = client messages // 2 = client and server messages $mail->SMTPDebug = 2; //Ask for HTML-friendly debug output $mail->Debugoutput = 'html'; //Adresse SMTP $mail->Host = "mail.".$domaine; //Port SMTP (25, 465 ou 587) $mail->Port = 25; //Authentification activé ? $mail->SMTPAuth = true; //Login SMTP $mail->Username = "contact@".$domaine; //Password SMTP $mail->Password = "tiramisu"; //EXPEDITEUR $mail->setFrom('contact@'.$domaine, 'Contact HHH'); //ADRESSE DE REPONSE $mail->addReplyTo($email,$nom); //DESTINATAIRE $mail->addAddress('contact@'.$domaine, 'Contact HHH'); //SUJET DU MAIL $mail->Subject = "Nouveau message sur HHH"; //Pour inclure une page html externe au lieu du simple html : // $mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__)); //MESSAGE html $messmail=nl2br($contenu);// on ajoute les sauts de ligne html $mail->msgHTML('
Vous avez reçu un nouveau message.
De : '.$nom.'
Mail : '.$email.'
'.$messmail.'
'); //MESSAGE texte $mail->AltBody = 'Vous avez reçu un nouveau de message de '.$nom.'\r\n Mail : '.$email.'\r\n'.$messmail; //pour attacher un fichier : // $mail->addAttachment('images/phpmailer_mini.gif'); //send the message, check for errors if (!$mail->send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } ?>