带有自定义实时域的PHP邮件程序(hotmail / outlook)

时间:2013-03-25 08:16:28

标签: php outlook live phpmailer

我正在尝试使用自定义Live域发送带有phpmailer的邮件。

我想知道我使用的$mail->host$mail->Port是否正确。

以下是错误:

  

邮件程序错误:以下发件人地址失败:yyy@xxxx.com:未连接称为Mail()

这是我的代码:

require("../PHPMailer_5.2.4/class.phpmailer.php");

$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "mail.live.com"; // SMTP server
$mail->SMTPDebug  = 0;                     // 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";      // sets GMAIL as the SMTP server
$mail->Port       = 465;

1 个答案:

答案 0 :(得分:1)

我记得PHP Mailer已经过时且不再开发/支持,请查看Swift Mailer