업데이트된 구성으로 "치명적 오류: 클래스 'PHPMailer' 찾을 수 없음" 해결
"치명적 오류: 클래스 'PHPMailer' 찾을 수 없음" 오류 발견됨"은 코드에서 PHPMailer 클래스를 찾을 수 없을 때 발생합니다. 이 문제를 해결하기 위해 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();
SMTP 설정 구성:
$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' 클래스를 찾을 수 없음'을 수정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!