使用PHPMailer进行SMTP的问题


Problem with using PHPMailer for SMTP

我使用PHPMailer进行SMTP,在发送邮件时出现错误"Mailer error: The following From address failed: no-reply@mydomain.org.uk"

我的代码如下:
        $mail = new PHPMailer();
        $mail->IsSMTP();                                   // send via SMTP
        $mail->Host = "localhost;"; // SMTP servers
        $mail->SMTPAuth = true;     // turn on SMTP authentication
        $mail->Username = "";  // SMTP username
        $mail->Password = ""; // SMTP password

        $mail->From = $email_address;
        $mail->FromName = $email_address;
        $mail->AddAddress($arrStudent[0]["email"]);
        $mail->WordWrap = 50;                              // set word wrap
        $mail->IsHTML(true);                               // send as HTML

        $mail->Subject = "Subject";
        $theData = str_replace("'n", "<BR>", $stuff);
        $mail->Body = $theData; // "This is the <b>HTML body</b>";
        $mail->AltBody = $stuff;


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

我研究了一切,当我在class.smtp.php中调试时,我发现函数"get_lines()"返回错误值"550身份验证失败"

代码以前工作得很好,我想知道这个问题是如何突然出现的。迫切需要帮助。

谢谢,Biplab

public function sendEmail ( $subject, $to, $body, $from = FALSE ) {
    require_once('mailer.class.php');
    $mailer = new PHPMailer();
    //do we use SMTP?
    if ( USE_SMTP ) {
        $mailer->IsSMTP();
        $mailer->SMTPAuth = true;
        $mailer->Host = SMTP_HOST;
        $mailer->Port = SMTP_PORT;
        $mailer->Password = '';
        $mailer->Username = '';
        if(USE_SSL)
            $mailer->SMTPSecure = "ssl";
    }
    $mailer->SetFrom($from?$from:ADMIN_EMAIL, ADMIN_NAME);
    $mailer->AddReplyTo ( ADMIN_EMAIL, ADMIN_NAME );
    $mailer->AddAddress($to);
    $mailer->Subject = $subject;
    //$mailer->WordWrap = 100;
    $mailer->IsHTML ( TRUE );
    $mailer->MsgHTML($body);
    require_once('util.class.php');
    $mailer->AltBody  =  Util::html2text ( $body );
    //$mail->AddAttachment("images/phpmailer.gif");      // attachment
    //$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
    if ( ! $mailer->Send() ) {
        return FALSE;
    }
    else {
        $mailer->ClearAllRecipients ();
        $mailer->ClearReplyTos ();
        return TRUE;
    }
}

我曾经用过……SetFrom应该用来代替From…那是你的错,伙计……:))

尝试将以下行添加到php.ini

extension=php_openssl.dll

重启并重试

我正在使用YII的Mailer与PHPMailer,这对我来说是有效的:

$mail = Yii::createComponent('application.extensions.mailer.EMailer');
$mail->Username           = $this->SMTP_USERNAME;  // SMTP username
$mail->Password           = $this->SMTP_PASSWORD; // SMTP password
$mail->SMTPAuth           = true;
$mail->From               = $this->fromAddress;
$mail->Host               = $this->SMTP_SERVER_ADDRESS;
$mail->FromName           = $this->fromName;
$mail->CharSet            = 'UTF-8';
$mail->Subject            = Yii::t('mailer', $this->subject);
$mail->Body               = $this->message;
$mail->AddReplyTo($this->toAddress);
$mail->AddAddress($this->toAddress);
$mail->IsSMTP(true);
$mail->IsHTML(true);
$mail->Send();

希望有帮助?