Ошибка SSL сервера SMTP Gmail - PullRequest
0 голосов
/ 29 декабря 2011

Я использовал эту кодировку для отправки почты с помощью gmail, но получаю приведенную ниже ошибку, здесь, когда я удалил часть ssl, она работает, но я не получаю никаких писем (также проверяется внутри спама).Есть другие проблемы?

$mail = new phpmailer;
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPDebug = 1;// enables SMTP debug information (for testing)
$mail->SMTPAuth  = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host  = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465;  // set the SMTP port for the GMAIL server
$mail->Username  = "un"; // GMAIL username
$mail->Password = "pwd"; // GMAIL password
$mail->SetFrom('test@gmail.com', 'Bharanidharan');
$mail->AddReplyTo("test@gmail.com","Vishal Kumar");
$mail->AddAddress("test@gmail.com","Bharani");
$mail->Subject = "Hey, check out";
$body = "hey, check email";
$mail->MsgHTML($body);
$address = "test@gmail.com";
$mail->AddAddress($address, "test");
if(!$mail->Send())
{
echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
echo "Message has been sent";
}

1 Ответ

2 голосов
/ 29 декабря 2011

Включить mod_ssl в Apache (поиск в файле конфигурации) и расширение PHP openssl (проверьте php.ini)

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...