我正在尝试使用PEAR发送交易电子邮件。我的PHP代码:
include('Mail.php');
include('Mail/mime.php');
$text = 'test text';
$html = '<html><body><b>HTML</b></body></html>';
$crlf = "\n";
$hdrs = array(
'From' => '***@***.com',
'Subject' => 'Test - PEAR mail'
);
$mime = new Mail_mime($crlf);
$mime->setTXTBody($text);
$mime->setHTMLBody($html);
$body = $mime->get();
$hdrs = $mime->headers($hdrs);
$mail = Mail::factory('smtp',
array ('host' => 'mail.***.com',
'auth' => true,
'username' => '***@***.com',
'password' => '***'));
$mail->send(***@***.com, $hdrs, $body);
结果:
“致命错误:在第349行的/home4/good7/php/Net/SMTP.php中调用未定义的方法PEAR :: raiseError()”
我看了一下SMTP.php中的第349行:
return PEAR::raiseError('Invalid response code received from server', $this->code);
我假设错误在我的代码中,而不是在SMTP.php中,但我找不到它。
此网站位于共享主机上。
有任何见解。
答案 0 :(得分:1)
看起来您没有所需的PEAR模块。在共享主机上,首先检查您是否按照自己的教程正确安装了PEAR: https://pear.php.net/manual/en/installation.checking.php
之后,如果没有正确安装,请按照共享主机教程进行操作,考虑到托管服务提供商可能会限制您需要完成的操作: https://pear.php.net/manual/en/installation.shared.php