在AWS AMI实例上使用PHPMailer发送邮件时出现问题

时间:2018-09-04 16:30:43

标签: php amazon-web-services amazon-ec2 phpmailer

我是UNIX的新手,来自Windows背景。 我已经在Amazon EC2上创建了一个实例,并安装了Apache,PHP和MySQl。 我已经成功上传了PHP网站的文件。 一切正常,除了我在通过联系表发送邮件时遇到问题。

我在这里浏览了AWS教程:https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-using-smtp-php.html

我成功安装了composer并在Putty中运行它,我发现供应商目录已创建并且phpmailer文件已下载。

网站结构如下:

html
test_mail.php
--vendor
----bin
----composer
----phpmailer
----autoload.php

我尝试使用本教程中包含的示例电子邮件脚本,该脚本如下所示:

// If necessary, modify the path in the require statement below to refer to the 
// location of your Composer autoload.php file.
require 'vendor/autoload.php';

use PHPMailer\PHPMailer\PHPMailer;

// Instantiate a new PHPMailer 
$mail = new PHPMailer;

// Tell PHPMailer to use SMTP
$mail->isSMTP();

$mail->SMTPDebug = 2;

// Replace sender@example.com with your "From" address. 
// This address must be verified with Amazon SES.
$mail->setFrom('sender@example.com', 'Sender Name');

但出现以下错误:

Fatal error: Uncaught Error: Class 'PHPMailer\PHPMailer\PHPMailer' not found in /var/www/testSite/html/test_mail.php:10 Stack trace: #0 {main} thrown in /var/www/testSite/html/test_mail.php on line 10

第10行是

$mail = new PHPMailer;

所以我对问题所在感到困惑。 所需的PHPMailer文件似乎已由composer正确创建,并且'vendor \ autoload.php'的路径应该正确。

我可能错过了服务器设置中的某些内容吗?

非常感谢收到的任何建议。

大卫

2 个答案:

答案 0 :(得分:0)

AWS不再具有自动加载功能,因此应如下初始化PHPMailer:

 <?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(); // 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("xxxxxx@xxxxx.com");
        $mail->Subject = "Test";
        $mail->Body = "hello";
        $mail->AddAddress("xxxxxx@xxxxx.com");

         if(!$mail->Send()) {
            echo "Mailer Error: " . $mail->ErrorInfo;
         } else {
            echo "Message has been sent";
         } ?>

答案 1 :(得分:0)

感谢劳伦斯向我指出正确的方向... 正如您所指出的,问题在于所使用的phpmailer版本。

当我将此项目的composer.json更改为

{
    "require": {
         "phpmailer/phpmailer":"~6.0"   
    }
}

并运行作曲家更新,我的脚本现在(大部分)成功运行了。

AWS文档中给出的示例似乎不正确,因为它说使用phpmailer 5.2,但它提供的脚本仅在版本6以后可用。

谢谢!

大卫