我使用PHP郵件功能發送一些HTML文本。嘗試使用PHP郵件功能對齊文本發送郵件
,使文本
$msg='<h1>This is the mail text i want to center</h1>';
然後我使用郵件功能,如:
mail($recipient,$subject,$msg,$mailheaders);
我收到的電子郵件,但所有的文本左對齊。 我試圖用中心標記
$msg='<center><h1>This is the mail text i want to center</h1></center>';
但郵件永不熄滅(這是不允許的?)
還試圖用樣式屬性
$msg='<h1 style="text-align:center;">This is the mail text i want to center</h1>';
但同樣沒有運氣。 任何想法歡迎
您需要指定它是發送頭中的html。另外你最好使用像phpmailer這樣的第三方庫來處理這個問題。 – Akintunde007
@Akintunde「你需要指定它是發送頭文件中的html」我應該怎麼做? – xbass540
顯示$ mailheaders變量 – Akintunde007