Bir PHP sayfasından GMail'in SMTP sunucusu üzerinden bir e-posta göndermeye çalışıyorum, ancak bu hatayı alıyorum:
kimlik doğrulama hatası [SMTP: SMTP sunucusu kimlik doğrulamasını desteklemiyor (kod: 250, yanıt: mx.google.com hizmetinizde, [98.117.99.235] SIZE 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES BORU HATTI)]
Biri yardım edebilir mi? İşte benim kod:
<?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
?? bu dosyayı nereden alabilirim?