要在 PHP 中配置邮件发送选项,您可以使用 PHPMailer 库
composer require phpmailer/phpmailer
send_email.php
的新文件并添加以下代码:<?php
require 'vendor/autoload.php';
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
function send_email($to, $subject, $body) {
// 实例化 PHPMailer 对象
$mail = new PHPMailer(true);
try {
// 服务器设置
$mail->SMTPDebug = 0; // 启用详细调试输出
$mail->isSMTP(); // 设置邮件程序使用 SMTP
$mail->Host = 'smtp.example.com'; // 指定主要和备用 SMTP 服务器
$mail->SMTPAuth = true; // 启用 SMTP 身份验证
$mail->Username = 'your_email@example.com'; // SMTP 用户名
$mail->Password = 'your_email_password'; // SMTP 密码
$mail->SMTPSecure = 'tls'; // 启用 TLS 加密,`ssl` 也被接受
$mail->Port = 587; // TCP 端口连接到
// 收件人
$mail->setFrom('your_email@example.com', 'Your Name');
$mail->addAddress($to); // 添加收件人
// 邮件内容
$mail->isHTML(true); // 将电子邮件格式设置为 HTML
$mail->Subject = $subject;
$mail->Body = $body;
// 发送邮件
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
}
?>
smtp.example.com
:您的 SMTP 服务器地址your_email@example.com
:您的发件人电子邮件地址your_email_password
:您的发件人电子邮件密码send_email()
函数发送邮件。例如:send_email('recipient@example.com', 'Test Subject', '<h1>Test Body</h1>');
这将向 recipient@example.com
发送一封带有指定主题和正文的测试邮件。请注意,您可能需要根据您的邮件服务提供商进行一些调整。