J'essaie d'envoyer un e-mail via le serveur SMTP de GMail à partir d'une page PHP, mais j'obtiens cette erreur:
échec d'authentification [SMTP: le serveur SMTP ne prend pas en charge l'authentification (code: 250, réponse: mx.google.com à votre service, [98.117.99.235] TAILLE 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]
Quelqu'un peut-il aider? Voici mon code:
<?php
require_once "Mail.php";
$from = "Sandra Sender <sender@example.com>";
$to = "Ramona Recipient <ramona@microsoft.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "smtp.gmail.com";
$port = "587";
$username = "testtest@gmail.com";
$password = "testtest";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'port' => $port,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?>
Mail.php
?? d'où puis-je obtenir ce fichier?