問題:
使用者需要協助才能使用PHP 的mail(>
使用者需要協助才能使用PHP 的mail(e) 函數發送HTML 電子郵件。儘管將“Content-type”標題設為“text/html”,但電子郵件正文僅包含純文字而不是格式化的 HTML。
答案:$header = "MIME-Version: 1.0\r\n"; $header .= "Content-type: text/html; charset: utf8\r\n";
<html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> ... ... ...
範例程式碼:
$header = "MIME-Version: 1.0\r\n"; $header .= "Content-type: text/html; charset: utf8\r\n"; $body = "This text should be red
"; $success = mail($to, $subject, $body, $header); if ($success) { echo "Sent HTML email successfully.
"; } else { echo "Error sending HTML email.
"; }
以上是如何使用 PHP 的 mail() 函數傳送 HTML 電子郵件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!