Phpmailer 5.1

Fermé
NDOUKI Messages postés 110 Date d'inscription mardi 29 juillet 2008 Statut Membre Dernière intervention 4 novembre 2013 - 31 janv. 2012 à 20:34
nag95 Messages postés 22 Date d'inscription vendredi 3 mai 2013 Statut Membre Dernière intervention 1 juin 2013 - 3 mai 2013 à 13:28
Bonsoir,

voici mon problème: je ne parviens pas à envoyer mon mail pourtant mon code semble clair.
si quelqu'un a une solution svp help

voici mon code

$mail = new PHPmailer();
$mail->IsSMTP();
$mail->Host='smtp.gmail.com';

$mail->SMTPDebug = 0;
$mail->Port = 465;

$mail->SMTPAuth = true;
$mail->Username = "xxxx@gmail.com";
$mail->Password = "xxxxx";

$mail->From='xxx@gmail.com';
$mail->AddAddress('xxxx@yahoo.fr');
$mail->AddReplyTo('xxx@gmail.com');

$mail->Subject='sujet test';
$mail->Body='texte test';
if(!$mail->Send()){
echo $mail->ErrorInfo;
}
else{
echo 'Mail sent';
}
$mail->SmtpClose();
unset($mail);



1 réponse

nag95 Messages postés 22 Date d'inscription vendredi 3 mai 2013 Statut Membre Dernière intervention 1 juin 2013 4
Modifié par baladur13 le 3/06/2013 à 13:49
Bonjour,

Pourrais-tu nous indiquer le message d'erreur ?

Regarde sur ce tutoriel, ça peut t'aider...
Pub supprimée Modération CCM

Merci
0