最初我通过 mail() 函数发送电子邮件,但它们总是被夹在垃圾邮件文件夹中,所以现在我想使用 PHP PEAR 使用 SMTP 发送它们,但我遇到了一些错误。
在functions.php中,我有电子邮件功能;
function send_mail($from,$to,$subject,$body)
{
// Setting up the SMTP setting
$smtp_info["host"] = "smtp1.servage.net";
$smtp_info["port"] = "25";
$smtp_info["auth"] = true;
$smtp_info["username"] = "xxx@auto-sal.es";
$smtp_info["password"] = "xxx";
// Creating the PEAR mail object :
$mail_obj =& Mail::factory("smtp", $smtp_info);
$headers = '';
$headers .= "From: $from\n";
$headers .= "Reply-to: $from\n";
$headers .= "Return-Path: $from\n";
$headers .= "Message-ID: <" . md5(uniqid(time())) . "@" . $_SERVER['SERVER_NAME'] . ">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Date: " . date('r', time()) . "\n";
$mail_sent = $mail_obj->send($to,$subject,$body,$headers);
if (PEAR::isError($mail_sent)) { print($mail_sent->getMessage());}
但我收到以下错误;
致命错误:在第 17 行的 /mounted-storage/hoxxx/xxx01/xx/auto-sal.es/functions.php 中找不到类“邮件”
但是,我的主机确实安装了这些模块https://www.servage.net/wiki/List_of_PEAR_modules
任何人都可以请建议。