클래스 '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 중국어 웹사이트의 기타 관련 기사를 참조하세요!