PHP - Pear Mail:身份验证失败,但telnet有效

时间:2012-04-26 09:25:14

标签: php email authentication pear

我遇到了身份验证问题。我想使用PHP通过外部SMTP服务器(运行Microsoft Exchange 2010)发送邮件。当我在telnet会话中发送邮件时,它可以正常工作:

telnet mail.myweb.com 25
Trying 100.200.300.400...
Connected to mail.myweb.com.
Escape character is '^]'.
220 mail.myweb.com SMTP Service ready
AUTH LOGIN
334 VXNlcm5hbWU6
bXlzZWNyZXR1c2VybmFtZQ==
334 UGFzc3dvcmQ6
bXlzZWNyZXRwYXNz
235 Authentication successful
MAIL FROM:user1@myweb.com
250 <user1@myweb.com> ... Sender ok
RCPT TO:fakeuser@fakeweb.com
250 Requested mail action okay, completed.
DATA
354 Start mail input; end with <CR><LF>.<CR><LF>
SUBJECT:test email
 
"test data"
.
250 Requested mail action okay, completed.

但是当我尝试使用Pear Mail代码时,我的身份验证失败了。这是调试响应:

DEBUG: Recv: 220 mail.myweb.com SMTP Service ready 
DEBUG: Send: EHLO localhost 
DEBUG: Recv: 500 Syntax error, command unrecognized 
DEBUG: Send: HELO localhost 
DEBUG: Recv: 250 Requested mail action okay, completed. 
DEBUG: Send: RSET 
DEBUG: Recv: 250 Requested mail action okay, completed.

authentication failure [SMTP: SMTP server does not support authentication (code: 250, response: Requested mail action okay, completed.)]
DEBUG: Send: QUIT 
DEBUG: Recv: 221 mail1.myweb.com closing transmission channel

这是PHP代码:

<?php
require_once "Mail.php";

$from = "user1@myweb.com";
$to = "fakeuser@fakeweb.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";

$host = "mail.myweb.com";
$port = "25";
$username = "mysecretusername";
$password = "mysecretpass";

$headers = array ('From' => $from,
     'To' => $to,
     'Subject' => $subject);
$smtp = Mail::factory('smtp',
      array ('host' => $host,
          'port' => $port,
          'debug' => true,
          'auth' => true,
          'username' => $username,
          'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
    echo("<p>" . $mail->getMessage() . "</p>");
 } else {
echo("<p>Message successfully sent!</p>");
 }
?>

PHP代码可以与其他SMTP服务器一起使用,因此Pear Mail没有问题。用户名/通行证都可以。你有什么想法吗?

0 个答案:

没有答案