语言字符串无法加载:from_failed [from_email_address]

时间:2012-02-02 08:35:38

标签: php phpmailer

尝试使用smtp发送电子邮件时出现此错误:

Language string failed to load: from_failed**myemail@gmail.com**

这是我的代码:

$mail = new PHPMailer();
                    //$mail->SetLanguage('en',dirname(__FILE__) . '/phpmailer/language/');
                    $SMTP_Host = "smtp.gmail.com";
                    $SMTP_Port = 465;
                    $mail->SMTPSecure = 'ssl';

                    $SMTP_UserName = "myemail@gmail.com";
                    $SMTP_Password = "****";
                    $from = "myemail@gmail.com";
                    $fromName = "My Name";
                    $to = "destination@gmail.com";

                    $mail->IsSMTP();
                    $mail->Host     = $SMTP_Host;
                    $mail->SMTPAuth = true;


                    $mail->Username = $SMTP_UserName;
                    $mail->Password = $SMTP_Password;

                    $mail->From     = "myemail@gmail.com";
                    $mail->FromName = "From Name";
                    $mail->AddAddress("myemail@gmail.com");
                    $mail->AddReplyTo($from, $fromName);

                    $mail->IsHTML(true);

                    $mail->Subject  =  "This is an message from our website";
                    $mail->Body     =  $design;

                    if(!$mail->Send())
                    {

                       echo "Error : " . $mail->ErrorInfo;
                       exit;
                    }

我该如何解决?

4 个答案:

答案 0 :(得分:7)

这通常意味着你的phpMailer类在尝试吐出消息时找不到语言文件。

最简单的解决方法是手动设置语言,包括语言文件夹的路径:

$mail = new PHPMailer();
$mail->SetLanguage("en", 'includes/phpMailer/language/');

它在您的语言文件夹中。或者您只需将SetLanguage方法指向此来源:

  1  <?php
   2  /**
   3   * PHPMailer language file.  
   4   * English Version
   5   */
   6  
   7  $PHPMAILER_LANG = array();
   8  
   9  $PHPMAILER_LANG["provide_address"] = 'You must provide at least one ' .
  10                                       'recipient email address.';
  11  $PHPMAILER_LANG["mailer_not_supported"] = ' mailer is not supported.';
  12  $PHPMAILER_LANG["execute"] = 'Could not execute: ';
  13  $PHPMAILER_LANG["instantiate"] = 'Could not instantiate mail function.';
  14  $PHPMAILER_LANG["authenticate"] = 'SMTP Error: Could not authenticate.';
  15  $PHPMAILER_LANG["from_failed"] = 'The following From address failed: ';
  16  $PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: The following ' .
  17                                         'recipients failed: ';
  18  $PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data not accepted.';
  19  $PHPMAILER_LANG["connect_host"] = 'SMTP Error: Could not connect to SMTP host.';
  20  $PHPMAILER_LANG["file_access"] = 'Could not access file: ';
  21  $PHPMAILER_LANG["file_open"] = 'File Error: Could not open file: ';
  22  $PHPMAILER_LANG["encoding"] = 'Unknown encoding: ';
  23  ?>

答案 1 :(得分:0)

您可以使用系统内部邮件功能。在这种情况下,phpMailer无法与SMTP正确连接。最好使用服务器的“邮件”功能通过phpMailer发送邮件。

替换

$mail->IsSMTP();

$mail->Mailer = "mail";

我希望您的脚本现在能正常工作,因为我们正在使用具有phpMailers功能的系统内部“邮件”功能。

答案 2 :(得分:0)

只要这样做...

$mail->SetLanguage("en");

答案 3 :(得分:-1)

如果您使用SMTP,请检查您的SMTP用户名和密码。我遇到了同样的问题,客户端更新了gmail密码。