PHPMailer,致命错误:在非对象上调用成员函数Send()

时间:2012-04-19 04:47:10

标签: php phpmailer

我收到此错误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
}

2 个答案:

答案 0 :(得分: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函数内和函数外部使用了varname New_Mail()。这非常好,但请记住,当您致电$mail时,New_Mail()内的Send()对象已不在范围内。这就是PHP出现的原因。

答案 1 :(得分:1)

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