无法使用PHPMailer远程连接到我的电子邮件服务器

时间:2015-11-16 23:04:17

标签: php smtp phpmailer pop3 dovecot

我正在使用PHPMailer编写一个PHP脚本来发送自动发送电子邮件。 出于测试目的,我使用了一个带有应用程序密码的Gmail帐户,一切正常。 当我用我的专业电子邮件替换Gmail帐户配置时,PHP连接脚本会持续加载一段时间并最终收到此消息。 SMTPDebug设置为3。

  

2015-11-16 22:43:30服务器 - >客户:+好Dovecot准备好了。 2015-11-16 22:43:30客户 - >服务器:EHLO localhost

这是什么意思?

这是我用来测试与电子邮件服务器连接的PHP函数

<?php

require('../PHPMailer-master/PHPMailerAutoload.php'); 

function smtpMailer() {
    $mail = new PHPMailer();  
    $mail->IsSMTP(); // active SMTP
    $mail->SMTPDebug = 2;  
    $mail->Host = 'mail.mycompany.com';
    $mail->Port = 587;
    //$mail->Username = "myaccount@mycompany.com";
    //$mail->Password = "mypassword";
    $mail->SetFrom = "myaccount@mycompany.com";
    $mail->FromName = 'foxy';
    $mail->addAddress('sendTo@gmail.com', 'John Doe');  
    $mail->WordWrap = 50;                                

     $mail->Subject = 'Here is the subject';
     $mail->Body = 'This is the body in plain text ';


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


}

smtpMailer();

?>

错误

2015-11-17 01:44:14 SERVER -> CLIENT: 220 mycompany.com ESMTP Ready 2015-11-17 01:44:14 
CLIENT -> SERVER: EHLO localhost 2015-11-17 01:44:14    
SERVER -> CLIENT: 250-mycompany.com Hello localhost 250 HELP 2015-11-17 01:44:14 
CLIENT -> SERVER: MAIL FROM: 2015-11-17 01:44:15    
SERVER -> CLIENT: 250 root@localhost... Sender ok 2015-11-17 01:44:15   
CLIENT -> SERVER: RCPT TO: 2015-11-17 01:44:16  
SERVER -> CLIENT: 503 non-authenticated user. Please check mail before sending. 2015-11-17 01:44:16 SMTP ERROR: RCPT TO command failed: 503 non-authenticated user. Please check mail before sending. 2015-11-17 01:44:16   
CLIENT -> SERVER: QUIT 2015-11-17 01:44:16  
SERVER -> CLIENT: 221 goodbye. 2015-11-17 01:44:16  SMTP Error: The following recipients failed: sendTo@gmail.com: non-authenticated user. Please check mail before sending. 
Mailer Error: SMTP Error: The following recipients failed: sendTo@gmail.com: non-authenticated user. Please check mail before sending.

谢谢。

1 个答案:

答案 0 :(得分:0)

这是我正在使用的代码

$mail = new PHPMailer();
$mail->CharSet = "UTF-8";
$mail->Username = "no-reply@mycompany.com";
$mail->Password = "password";
$mail->AddAddress($email);
$mail->FromName = "Any Text";
$mail->Subject = $sub;
$mail->IsHTML(true);
$mail->Body = $code;
$mail->Host = "192.168.20.47"; // Is IP example that I show here 
$mail->Port = 25;
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->From = $mail->Username;
if ($mail->Send()) {
    echo "Message send!";
}
else {
    echo "Mailer Error: " . $mail->ErrorInfo;
}
希望它可以提供帮助。