У меня есть этот код, и все хорошо работает на моем локальном сервере. Письмо отправлено без проблем.
Но теперь я передаю содержимое веб-серверу и получаю эту ошибку ...
SMTP Error: Could not connect to SMTP host.
SSL включен на сервере .. правильно? Так в чем проблема?
$mail = new PHPMailer();
$mail->IsSMTP();
$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
$mail->Username = "dnteiro"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password