要在 PHP 中配置郵件發(fā)送選項(xiàng),您可以使用 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) {
// 實(shí)例化 PHPMailer 對(duì)象
$mail = new PHPMailer(true);
try {
// 服務(wù)器設(shè)置
$mail->SMTPDebug = 0; // 啟用詳細(xì)調(diào)試輸出
$mail->isSMTP(); // 設(shè)置郵件程序使用 SMTP
$mail->Host = 'smtp.example.com'; // 指定主要和備用 SMTP 服務(wù)器
$mail->SMTPAuth = true; // 啟用 SMTP 身份驗(yàn)證
$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); // 添加收件人
// 郵件內(nèi)容
$mail->isHTML(true); // 將電子郵件格式設(shè)置為 HTML
$mail->Subject = $subject;
$mail->Body = $body;
// 發(fā)送郵件
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
}
?>
smtp.example.com
:您的 SMTP 服務(wù)器地址your_email@example.com
:您的發(fā)件人電子郵件地址your_email_password
:您的發(fā)件人電子郵件密碼send_email()
函數(shù)發(fā)送郵件。例如:send_email('recipient@example.com', 'Test Subject', '<h1>Test Body</h1>');
這將向 recipient@example.com
發(fā)送一封帶有指定主題和正文的測(cè)試郵件。請(qǐng)注意,您可能需要根據(jù)您的郵件服務(wù)提供商進(jìn)行一些調(diào)整。