使用更新的配置解決「致命錯誤:找不到類'PHPMailer'」
錯誤「致命錯誤:找不到類'PHPMailer'」當您的程式碼找不到PHPMailer 類別時,會發生「found」。為了解決這個問題,使用 include_once() 的過時方法不再適用。最新版本的 PHPMailer 需要不同的初始化過程。
解決方案:
找到 PHPMailer 檔案:
將下列檔案放在同一個資料夾中目錄作為腳本:
初始化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]");
配置SMTP設定:
if (!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent"; }
以上是如何使用更新的配置修復'致命錯誤:找不到類別'PHPMailer'”?的詳細內容。更多資訊請關注PHP中文網其他相關文章!