无法使用 PHPMAILER 发送电子邮件

unable to use PHPMAILER to send email

我刚刚从 github 下载了 PHPMAILER 以向用户发送电子邮件。我的问题是,当我尝试从 localhost 运行 php 文件 PHPMAILER 时,我得到错误

Warning: require(PHPMailerAutoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\PROJECT\HTML_FILES\sendmail.php on line 3

Fatal error: require(): Failed opening required 'PHPMailerAutoload.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\PROJECT\HTML_FILES\sendmail.php on line 3

其中 sendmail.php 是包含 phpmailer 发送电子邮件示例代码的文件。 我认为我下载的 phpmailer 存储库的位置有问题,所以我将向您展示我的项目文件夹是如何使用内部存储库设置的:

PHPMailer-5.2-... 是 zip 文件,PHPMAILER_FOLDER 是解压后的文件。我刚刚给它改名了。 PROJECT FOLDER 是名称较长的文件夹,位于 xampp/htdocs 我的 sendmail.php 代码(没有我的凭据的示例代码):

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@example.com';                 // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                                    // TCP port to connect to

$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User');     // Add a recipient
$mail->addAddress('ellen@example.com');               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

我也将 "phpmailer/phpmailer": "~5.2" 添加到我的 composer.json 中,结果相同 我将不胜感激你的帮助。提前谢谢你。

如果您的 sendmail.php 在项目的“根文件夹”中,但 PHPMailerAutoload.php 在“PHPMAILER_FOLDER”中,那么您需要像这样包含它:

require 'PHPMAILER_FOLDER' . DIRECTORY_SEPARATOR . 'PHPMailerAutoload.php';

但是你有这样的文件吗?据我所知,PHPMailer 没有提供,您自己创建了一个吗?

您需要指向该文件。

如果您更喜欢使用由 composer 生成的自动加载器,那么通常它会创建一个名为 vendor 的文件夹,然后不使用 phpmailer 中的自动加载器自动加载,而是包含由 composer 生成的自动加载器并添加所需的 use陈述:

include 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;