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

标签 php smtp phpmailer pop3 dovecot

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

2015-11-16 22:43:30 SERVER -> CLIENT: +OK Dovecot ready. 2015-11-16 22:43:30 CLIENT -> SERVER: 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.

谢谢。

最佳答案

这是我正在使用的代码

$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;
}

希望对你有帮助。

关于php - 无法使用 PHPMailer 远程连接到我的电子邮件服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33746281/

相关文章:

javascript - 通过传递选定的下拉列表值来获取第三个下拉列表的结果

php - 这就是工厂模式的工作原理吗?

php - SoapServer 功能选项有什么区别

C++ Libcurl 在较大内容的 readfunction 回调中导致写入访问冲突

email - PHPMailer 因 ssl 而失败

php - 如何将 onclick 事件放在其值来自数据库的按钮上

python - 如何在回复中添加电子邮件列表

ssl - 扭曲的 SMTP 服务器,添加 SSL 支持,2 个工厂?

php - 在 PHP 中过滤/清理电子邮件主题和正文

php - Xampp 和 mailtodisk 使用 PHPMailer 调试电子邮件