我已經在本地主機中設置了電子郵件發送,並使用它可以訪問我的gmail帳戶以使用php腳本發送郵件。未在郵件中顯示HTML內容
<?php
$to = "[email protected]";
$subject = "HTML Mail";
$message = "<html><body>";
$message .= "<b>Hey! How are you today?</b>";
$message .= "<br>Regards";
$message .= "</body></html>";
$headers = "From: [email protected]\r\n";
mail($to,$subject,$message,$headers);
echo "<h1>MAIL SENT</h1>";
?>
當我把使用這個腳本了該郵件,它給出了
<html><body><b>Hey! How are you today?</b><br>Regards</body></html>
爲什麼不顯示HTML類型的輸出?
嘿!你今天好嗎?
Regards
像這樣在Gmail嗎?
是它的工作:d –