Bonjour,
J'ai un probleme que je n'arrive pas a resoudre, j'ai pourtant essaye les differentes solutions de ce forum, mais aucune ne marche.
Voici mon probleme : Etant en local, j'essaye d'enregistrer un nouveau membre sur le site, mais un probleme apparait lors de l'envoi d'email : Erreur SMTP ! Authentification impossible.
Voici la configuation server :
Serveur de mail * SMTP
E-mail du site username@gmail.com
Nom de l'expéditeur username
Accès à Sendmail /usr/sbin/sendmail
Identification SMTP OUI
Sécurité SMTP Aucune
Port SMTP * 25
Utilisateur SMTP username@talktalk.net
Mot de passe SMTP monmotdepass
Serveur SMTP smtp.talktalk.net
Voici aussi mon php.ini
ainsi que mon configuration.php
P.S : desole pour les accents, mais je suis actuellement en Angleterre, et donc j'utilise un clavier un peu different
Merci d'avance
J'ai un probleme que je n'arrive pas a resoudre, j'ai pourtant essaye les differentes solutions de ce forum, mais aucune ne marche.
Voici mon probleme : Etant en local, j'essaye d'enregistrer un nouveau membre sur le site, mais un probleme apparait lors de l'envoi d'email : Erreur SMTP ! Authentification impossible.
Voici la configuation server :
Serveur de mail * SMTP
E-mail du site username@gmail.com
Nom de l'expéditeur username
Accès à Sendmail /usr/sbin/sendmail
Identification SMTP OUI
Sécurité SMTP Aucune
Port SMTP * 25
Utilisateur SMTP username@talktalk.net
Mot de passe SMTP monmotdepass
Serveur SMTP smtp.talktalk.net
Voici aussi mon php.ini
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.talktalk.net
; http://php.net/smtp-port
smtp_port = 25
extension=php_smtp.dll
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = username@gmail.com
; For Win32 only.
; http://php.net/smtp
SMTP = smtp.talktalk.net
; http://php.net/smtp-port
smtp_port = 25
extension=php_smtp.dll
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = username@gmail.com
public $mailer = 'smtp';
public $mailfrom = 'username@gmail.com';
public $fromname = 'username';
public $sendmail = '/usr/sbin/sendmail';
public $smtpauth = '1';
public $smtpuser = 'username@talktalk.net';
public $smtppass = 'monmotdepass';
public $smtphost = 'smtp.talktalk.net';
public $smtpsecure = 'none';
public $smtpport = '25';
public $mailfrom = 'username@gmail.com';
public $fromname = 'username';
public $sendmail = '/usr/sbin/sendmail';
public $smtpauth = '1';
public $smtpuser = 'username@talktalk.net';
public $smtppass = 'monmotdepass';
public $smtphost = 'smtp.talktalk.net';
public $smtpsecure = 'none';
public $smtpport = '25';
Merci d'avance
Commentaire