PHP 페이지에서 Gmail의 SMTP 서버를 통해 이메일을 보내려고하는데이 오류가 발생합니다.
인증 실패 [SMTP : SMTP 서버는 인증을 지원하지 않습니다 (코드 : 250, 응답 : 서비스에서 mx.google.com, [98.117.99.235] 크기 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]
누구든지 도울 수 있습니까? 내 코드는 다음과 같습니다.
<?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
입니까 ?? 이 파일은 어디서 구할 수 있습니까?