我正在尝试使用phpmailer开发表单并发送到电子邮件。发件人电子邮件是Gmail。以下是我的PHP代码:
<?php
use PHPMailer\PHPMailer;
use PHPMailer\Exception;
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = 4;
$mail->isSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = 'thisismy@gmail.com';
$mail->Password = 'xxxxxxxx';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
//Recipients
$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('receiver@gmail.com');
//Content
$mail->isHTML(true);
$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';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
?>
我收到此错误由于发生内部服务器错误,无法显示该页面。 *未使用localhost
答案 0 :(得分:0)
阅读PHPMailer自述文件,该自述文件将告诉您如何加载PHPMailer,并将代码基于所提供的示例。您正在使用PHPMailer 6语法,但尝试像PHPMailer 5一样加载它,并且旧的自动加载器不存在,并且尝试要求它是一个致命的错误。
如果您已经阅读了最基本的PHP调试指南,告诉您启用错误消息的显示或检查您的Web服务器日志,那么您会发现这一点。