在PHP中實現郵件發送,您可以使用PHPMailer庫。以下是使用PHPMailer發送郵件的步驟:
composer require phpmailer/phpmailer
require 'vendor/autoload.php';
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
$mail = new PHPMailer(true);
try {
// 服務器設置
$mail->isSMTP(); // 使用SMTP
$mail->Host = 'smtp.example.com'; // SMTP服務器地址
$mail->SMTPAuth = true; // 開啟授權驗證
$mail->Username = 'your_username'; // SMTP用戶名
$mail->Password = 'your_password'; // SMTP密碼
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // 使用TLS加密
$mail->Port = 587; // SMTP端口
// 發件人和收件人
$mail->setFrom('your_email@example.com', 'Mailer'); // 發件人郵箱和名稱
$mail->addAddress('recipient@example.com', 'Recipient Name'); // 收件人郵箱和名稱
// 郵件內容
$mail->isHTML(true); // 設置郵件格式為HTML
$mail->Subject = 'Here is the subject'; // 郵件主題
$mail->Body = '<strong>This is the HTML message body</strong>'; // 郵件正文
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; // 非HTML郵件正文
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
請確保將上述代碼中的your_username
、your_password
、smtp.example.com
、your_email@example.com
和recipient@example.com
等值替換為您自己的郵件服務器和郵箱地址。
現在運行這段代碼,應該可以實現郵件發送功能。如果遇到問題,請檢查郵件服務器的配置以及您的代碼是否有誤。