PHP MAILER错误自动加载文件

时间:2018-01-13 16:33:29

标签: php phpmailer mailer

我有php邮件的问题。 所以在教程中他谈到了自动加载文件,但是当我下载文件夹phpmailer这个文件不在时,我是否必须创建它?

所以我仍然尝试使用文件夹src中的文件phpmailer.php,但是这会让我出错,这是错误的:

Fatal error: Class 'PHPMailer' not found in C:\wamp64\www\site ajft\contact.php on line 14

这是我的代码:

    <?php
use League\OAuth2\Client\Grant\RefreshToken;
ini_set("display_errors", 1); 
error_reporting(E_ALL);

 $msg ="";
 if(isset($_POST['submit'])) {
require 'phpmailer/src/PHPMailer.php';

    function sendmail($to, $from, $fromname, $tel , $body) {
    *(line 14)  $mail = new PHPMailer ;
        $mail->setFrom($from, $fromname);
        $mail->addAddress($to);
        $mail->Subject = 'Contact Form - Email';
        $mail->Body = $body;
        //$mail->isHTML(isHTML: false);


        return $mail->send();
    }

    $name = $_POST['nom'];
    $email = $_POST['mail'];
    $tel = $_POST['objet'];
    $body = $_POST['message'];

    if (sendmail('Myemail@lf.com', $email, $name , $tel, $body)) {
            $msg = 'email envoyé';
        } else
            $msg = 'email non envoyé';

    }

    ?>

如果有人能告诉我如何解决这个问题,请提前谢谢

1 个答案:

答案 0 :(得分:2)

你缺少重要的东西。同时删除require 'phpmailer/src/PHPMailer.php';

autoload.php由作曲家创作。 PHPMailer不再拥有自己的自动加载器,因为composer可以更好地完成它。如果您不想使用作曲家,可以按照readme中的说明手动加载文件。

作曲者方式:

  <?php
    // Import PHPMailer classes into the global namespace
    // These must be at the top of your script, not inside a function
    use PHPMailer\PHPMailer\PHPMailer;
    use PHPMailer\PHPMailer\Exception;

    //Load composer's autoloader
    require 'vendor/autoload.php';

手动方式:

<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'path/to/PHPMailer/src/Exception.php';
require 'path/to/PHPMailer/src/PHPMailer.php';
require 'path/to/PHPMailer/src/SMTP.php';

考虑使用他们的suggested php script