Sto cercando di inviare un'e-mail tramite il server SMTP di GMail da una pagina PHP, ma viene visualizzato questo errore:
autenticazione fallita [SMTP: il server SMTP non supporta l'autenticazione (codice: 250, risposta: mx.google.com al tuo servizio, [98.117.99.235] DIMENSIONE 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]
Qualcuno può aiutare? Ecco il mio codice:
<?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
?? da dove ottengo questo file?