使用 SwiftMailer 发送电子邮件时 Digital Ocean 出现 500 错误

使用 SwiftMailer 发送电子邮件时 Digital Ocean 出现 500 错误

当联系表单提交到我的网站时,我尝试从我的辅助电子邮件地址向我的主要电子邮件地址发送电子邮件。我正在使用Swiftmailer实现这一点。当我在计算机上的 XAMPP 服务器上离线使用该代码时,该代码运行良好,但当我尝试在运行 LAMP 堆栈的 Digital Ocean Droplet 上运行它时(该堆栈与我的离线设置几乎相同),它不起作用并返回错误 500。

我调查了一下,发现 SMTP 已被禁用,以防止垃圾邮件,并且可以如果我联系了支持人员,则解除。我联系他们后,他们告诉我无法解除对端口 25 的限制,但让我尝试其他端口,SMTP 不适用于浮动 IP。我删除了我的浮动 IP 来解决这个问题,我目前正在尝试使用端口 578 和 Hotmail 电子邮件地址,但仍然不起作用。

到目前为止我已经尝试过:

我按照 Digital Ocean Support 的建议使用此命令打开端口 587这里

sudo iptables -A INPUT -p tcp --dport 587 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
sudo iptables -A OUTPUT -p tcp --sport 587 -m conntrack --ctstate ESTABLISHED -j ACCEPT

之后,我的服务器能够连接到端口 587 的 smtp.office365.com,如下命令所示:

nc -vz smtp.office365.com 587
Connection to smtp.office365.com 587 port [tcp/submission] succeeded!

命令“ufw status”显示端口 587 在 ipv4 和 ipv6 上都打开:

To                         Action      From
--                         ------      ----
22/tcp                     LIMIT       Anywhere
80/tcp                     ALLOW       Anywhere
443/tcp                    ALLOW       Anywhere
3306/tcp                   ALLOW       Anywhere
587/tcp                    ALLOW       Anywhere
22/tcp (v6)                LIMIT       Anywhere (v6)
80/tcp (v6)                ALLOW       Anywhere (v6)
443/tcp (v6)               ALLOW       Anywhere (v6)
3306/tcp (v6)              ALLOW       Anywhere (v6)
587/tcp (v6)               ALLOW       Anywhere (v6)

但是,当我尝试运行联系表单时,它最终无法在 droplet 上工作,但它在离线时工作得很好,而且我收到了预期的电子邮件。

我是否遗漏了什么?

我将在下面附上我的 swiftmailer 部分的代码,以防它有助于识别我似乎遗漏的代码中的任何潜在错误。

include_once 'private/pass.inc.php';


//These fields usually get the data using a a form using POST method and PHP but left with placeholders here for the sake of simplicity.
$name = 'name';
$email = 'email';
$phone = 'phone';
$subject = 'subject';
$message = 'message';

// Send Email
// Create the Transport
$transport = (new Swift_SmtpTransport('smtp.office365.com', 587, 'tls'))
    ->setUsername($emailusername)
    ->setPassword($emailpassword);

// Create the Mailer using your created Transport
$mailer = new Swift_Mailer($transport);

function sendVerificationEmail($name, $email, $phone, $subject, $message)
{
    global $mailer;
    $sentfrom = "[email protected]";
    $sentto = "[email protected]";
    $body = 'Message From:' . $name . '<br>' . $email . '<br>' . $phone . '<br>' . $subject . '<br>' . $message;
    // Create a message
    $message = (new Swift_Message("A New Message From " . $name))
        ->setFrom([$sentfrom])
        ->setTo([$sentto])
        ->setBody($body, 'text/html');

    // Send the message
    $result = $mailer->send($message);
}

sendVerificationEmail($name, $email, $phone, $subject, $message);

echo "<script> window.location.assign('./contactformsuccess'); </script>";

编辑:添加日志

[Sun Aug 15 07:34:58.851255 2021] [php:warn] [pid 182629] [client 162.158.167.91:37848] PHP Warning: stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages:\nerror:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in /var/www/site.com/html/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php on line 94 [Sun Aug 15 07:34:58.851487 2021] [php:error] [pid 182629] [client 162.158.167.91:37848] PHP Fatal error: Uncaught Swift_TransportException: Unable to connect with TLS encryption in /var/www/site.com/html/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php:349\nStack trace:\n#0 /var/www/site.com/html/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php(148): Swift_Transport_EsmtpTransport->doHeloCommand()\n#1 /var/www/site.com/html/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php(65): Swift_Transport_AbstractSmtpTransport->start()\n#2 /var/www/site.com/html/includes/cf2.inc.php(39): Swift_Mailer->send()\n#3 /var/www/site.com/html/includes/cf2.inc.php(42): sendVerificationEmail()\n#4 {main}\n thrown in /var/www/site.com/html/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php on line 349

答案1

我解决了。我将 Microsoft 身份验证器应用连接到我尝试使用的辅助帐户,因此它抛出了错误。我没有启用双重身份验证,但它仍然导致问题,所以我断开了连接。

我还用这个更新了swiftmailer传输:

// Create the Transport
$transport = (new Swift_SmtpTransport('smtp.live.com', 587, 'tls'))
 ->setUsername($emailusername)
 ->setPassword($emailpassword)
 ->setStreamOptions(array('ssl' => array('allow_self_signed' => true, 'verify_peer' => false, 'verify_peer_name' => false)));

两者结合起来,解决了我的问题。电子邮件现在按预期发送。

相关内容