在PHP中設(shè)置郵件主題,可以使用PHPMailer這樣的庫。以下是使用PHPMailer設(shè)置郵件主題的一個簡單示例:
composer require phpmailer/phpmailer
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'vendor/autoload.php';
$mail = new PHPMailer(true);
try {
// 郵件服務(wù)器設(shè)置
$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;
// 發(fā)件人和收件人
$mail->setFrom('your_email@example.com', 'Your Name');
$mail->addAddress('recipient@example.com', 'Recipient Name');
// 郵件主題
$mail->Subject = '郵件主題';
// 郵件正文
$mail->isHTML(true);
$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
:您的郵件服務(wù)器地址(例如:smtp.example.com)your_email@example.com
:發(fā)件人的電子郵件地址your_email_password
:發(fā)件人的電子郵件密碼recipient@example.com
:收件人的電子郵件地址郵件主題
:您想要設(shè)置的郵件主題php send_email.php
),郵件應(yīng)該會發(fā)送到指定的收件人,并且主題會設(shè)置為指定的值。