未找到「PHPMailer」類別:解決PHP 中的致命錯誤
儘管在同一目錄中包含「PHPMailerAutoload.」檔案在php在您的腳本中,您遇到「致命錯誤:未找到'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]"); if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent"; }
透過實作此更新的初始化方法,您應該能夠使用PHPMailer沒有遇到「致命錯誤:找不到類別'PHPMailer'」問題。
以上是為什麼我在 PHP 中收到「致命錯誤:找不到類別 'PHPMailer'」錯誤,如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!