致命錯誤:未找到「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中文網其他相關文章!