Serious problem: Unable to find 'PHPMailer' class
P粉738346380
P粉738346380 2023-08-20 20:15:59
0
1
503
<p><br /></p><ul> <li>I tried:<code>include_once('C:InetpubwwwrootphpPHPMailerPHPMailerAutoload.php');</code></li> </ul> <blockquote> <p>Fatal error: Class 'PHPMailer' not found on line 151 of C:Inetpubwwwrootphpindex.php</p> </blockquote> <p>I placed <code>PHPMailerAutoload.php</code> in the same directory as my script. </p> <p>Can anyone help me resolve this issue? </p>
P粉738346380
P粉738346380

reply all(1)
P粉442576165

All answers are now outdated. Latest versions (as of February 2018) no longer have autoloading, PHPMailer should be initialized as follows:

<?php

  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(); // 启用SMTP

    $mail->SMTPDebug = 1; // 调试:1 = 错误和消息,2 = 仅消息
    $mail->SMTPAuth = true; // 启用身份验证
    $mail->SMTPSecure = 'ssl'; // 启用安全传输,Gmail要求
    $mail->Host = "smtp.gmail.com";
    $mail->Port = 465; // 或者587
    $mail->IsHTML(true);
    $mail->Username = "xxxxxx";
    $mail->Password = "xxxx";
    $mail->SetFrom("xxxxxx@xxxxx.com");
    $mail->Subject = "测试";
    $mail->Body = "你好";
    $mail->AddAddress("xxxxxx@xxxxx.com");

     if(!$mail->Send()) {
        echo "邮件发送失败:" . $mail->ErrorInfo;
     } else {
        echo "邮件已发送";
     }
?>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!