致命错误:未找到“PHPMailer”类
尝试在 PHP 脚本中使用 PHPMailer 库时,您可能会遇到以下错误“致命错误:未找到‘PHPMailer’类。”出现此问题的原因是无法在脚本中找到 PHPMailer 类定义。
要解决此问题,请确保 PHPMailerAutoload.php 文件正确包含在脚本中。该文件应放置在与您的脚本相同的目录中,并应使用以下代码来包含它:
include_once('C:\Inetpub\wwwroot\php\PHPMailer\PHPMailerAutoload.php');
但是,请注意,最新版本的 PHPMailer(截至 2018 年 2 月)不再包含该文件使用自动加载机制。要在当前版本中初始化 PHPMailer,请按照以下步骤操作:
require("/home/site/libs/PHPMailer-master/src/PHPMailer.php"); require("/home/site/libs/PHPMailer-master/src/SMTP.php");
$mail = new PHPMailer\PHPMailer\PHPMailer();
$mail->IsSMTP(); // enable SMTP $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for Gmail $mail->Host = "smtp.gmail.com"; $mail->Port = 465; // or 587 $mail->IsHTML(true); $mail->Username = "xxxxxx"; $mail->Password = "xxxx"; $mail->SetFrom("[email protected]"); $mail->Subject = "Test"; $mail->Body = "hello"; $mail->AddAddress("[email protected]");
if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent"; }
以上是为什么我在 PHP 中收到'致命错误:未找到'PHPMailer'类”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!