#php #email #smtp
#php #Адрес электронной почты #smtp
Вопрос:
Я загрузил class.phpmailer.php , class.smtp.php и PHPMailerAutoload.php .
Ошибка:
2014-06-21 15:24:30 SMTP ERROR: Failed to connect to server: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (4296) SMTP connect() failed. Mailer Error: SMTP connect() failed.
PHP-код для выполнения smtp-сообщения электронной почты с заданными $email, $ subject и $body.
<?php
require_once("..htmlphpclass.phpmailer.php");
date_default_timezone_set('America/Eastern');
include("..htmlphpclass.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.live.com";
$mail->Port = 587;
$mail->Username = "self@live.com";
$mail->Password = "pass1";
$mail->From="self@live.com";
$mail->Subject = $subject;
$mail->Body=$body;
$mail->AddAddress($email);
//$mail->AddAttachment("images/phpmailer.gif"); // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
Комментарии:
1. с какой ОС вы пытаетесь отправить электронное письмо?
2. ssl использует порт 465. tls использует 587.