1

我得到这个错误PHP Fatal error: Call to a member function Send() on a non-object。此错误与行有关if(!$mail->Send())

我在另一个论坛上搜索,它可能是关于在某处使用“load->”,但我不确定为什么以及如何。

function New_Mail($email,$firstname,$surname,$body, $subject, $altBody, $wordwrap){

$mail             = new PHPMailer();

$mail->IsSMTP();
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the server
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port

$mail->Username   = "xxxxxxx@gmail.com";  // GMAIL username
$mail->Password   = "xxxxx";            // GMAIL password

$mail->From       = "xxxxxxx@gmail.com";
$mail->FromName   = "Admin";

$mail->Subject    = $subject;
$mail->AltBody    =  $altBody;//Text Body
$mail->WordWrap   = $wordwrap; // set word wrap
$mail->AddAddress($email,$firstname." ".$surname);

$mail->MsgHTML($body);
$mail->AddReplyTo("replyto@yourdomain.com","Admin");
$mail->SMTPDebug = 1;

$mail->IsHTML(true); // send as HTML

}

$mail=New_Mail($email,$firstname,$surname,'This is the body','Welcome','this is the alternate body',100);

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
// nothing is displayed
}
4

2 回答 2

4

您收到错误是因为$mail代码的底部不是对象。你有这段代码:

$mail=New_Mail($email,$firstname,$surname,'This is the body','Welcome','this is the alternate body',100);

然而,New_Mail()实际上并没有返回任何东西,所以$mail是一个空变量。

解决此问题的一种方法是将$mail对象返回到New_Mail().

另一个注意事项:选择变量名时要小心。您在函数$mail内部和New_Mail()函数外部使用 varname。这很好,但请记住,当您调用时,$mail来自内部的对象New_Mail()不再在范围内Send()。这就是为什么 PHP 会失败的原因。

于 2012-04-19T04:56:07.803 回答
1

在调用 $mail->Send() 之前显示 var_dump($mail); 可能你忘了包括课程吗?例如require_once($_SERVER['DOCUMENT_ROOT'].'/lib/phpmailer/class.phpmailer.php');

于 2012-04-19T04:55:38.790 回答