0

我有一个支持邮件的服务器,比如说example.com。我通过 cpanel 配置了服务器并添加了 MX 记录,这样我就可以通过outlook.comaddress接收和发送邮件myaddr@example.com。MX 记录来自domains.live.com.

现在我需要使用 SMTP 使用 PHP 以编程方式发送邮件。我使用以下脚本尝试了 PHPmailer。但它显示错误

Mailer Error: SMTP Connect() failed. 

(但我可以使用 myaddr@example.com 通过 Outlook.com 发送和接收电子邮件)

$body             = $_POST['message'];

$to = "support@example.org";
$from = 'fromAddress@gmail.com';
$fName = 'first name';
$lName = 'last name';
$subject =  'my subject';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->CharSet = 'UTF-8';
  //  $body             = eregi_replace("[\]",'',$body);
$mail->Host       = "mail.example.org"; // SMTP server example
$mail->SMTPDebug  = 0;           // enables SMTP debug information (for testing)
$mail->SMTPAuth   = true;        // enable SMTP authentication
$mail->Port       = 25;          // set the SMTP port for the GMAIL server
$mail->Username   = "myaddr@example.org"; // SMTP account username example
$mail->Password   = "password";
$mail->SetFrom($from, $fName.' '.$lName);
$mail->Subject = $subject;
$mail->AddAddress($to, "Support Team");
$mail->MsgHTML($body);

if(!$mail->Send()) {
     echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}

我该如何解决这个问题。

4

1 回答 1

0

最后,我通过替换下面的一些设置解决了这个问题,它工作了:)。

    $mail->Host       = "smtp-mail.outlook.com"; // SMTP server example
    $mail->Port       = 587;  
    $mail->SMTPSecure = 'tls';
于 2013-09-14T16:46:17.410 回答