在 PHP 中,您可以使用 PHPMailer 库来处理邮件头信息。以下是使用 PHPMailer 发送电子邮件并设置邮件头信息的一些示例代码:
composer require phpmailer/phpmailer
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'vendor/autoload.php';
$mail = new PHPMailer(true);
try {
// 邮件服务器设置
$mail->SMTPDebug = 0;
$mail->isSMTP();
$mail->Host = 'smtp_host';
$mail->SMTPAuth = true;
$mail->Username = 'your_email@example.com';
$mail->Password = 'your_email_password';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
// 发件人和收件人
$mail->setFrom('your_email@example.com', 'Mailer');
$mail->addAddress('recipient@example.com', 'Recipient');
// 邮件内容设置
$mail->isHTML(true);
$mail->Subject = 'Email 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}";
}
?>
smtp_host
:您的 SMTP 服务器地址(例如:smtp.gmail.com)。your_email@example.com
:发件人的电子邮件地址。your_email_password
:发件人的电子邮件密码。recipient@example.com
:收件人的电子邮件地址。Email Subject
:邮件主题。This is the HTML message body <b>in bold!</b>
:邮件正文(可以是纯文本或 HTML)。