gpt4 book ai didi

phpmailer - 如何在共享主机环境中安装 phpMailer?

转载 作者:行者123 更新时间:2023-12-03 16:53:02 27 4
gpt4 key购买 nike

如何安装 phpMailer在共享托管环境中?我需要将其用于用户的电子邮件验证和密码更改。

最佳答案

您可以在这里下载:https://github.com/PHPMailer/PHPMailer

将文件夹上传到您的服务器并使用以下行包含主文件:

<?php
require 'phpmailerfolder/PHPMailerAutoload.php';
?>

之后,您将需要一个外部 SMTP 帐户,例如 gmail.com。这是带有 GMAIL 的 PHPMailer 的工作示例:
<?php
require 'phpmailerfolder/PHPMailerAutoload.php';

$mail = new PHPMailer;

$mail->isSMTP();
$mail->SMTPDebug = 0;
$mail->Debugoutput = 'html';
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = "youremail@gmail.com";
$mail->Password = "yourpassword";
$mail->setFrom('youremail@gmail.com', 'Your Name');
$mail->addAddress('to@site.com', 'To');

$mail->Subject = "Subject";
$mail->Body = "Message";

if (!$mail->send()) {
echo "Error sending message";
} else {
echo "Message sent!";
}
?>

确保在此 GMAIL 帐户中也启用“非安全应用”: https://support.google.com/accounts/answer/6010255?hl=en

关于phpmailer - 如何在共享主机环境中安装 phpMailer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40813626/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com