我正在使用PHP邮件功能发送一些HTML文本。
所以文字是
$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>';
但又没有运气。 欢迎任何想法
答案 0 :(得分:1)
总是很难发送一个设计不错的好邮件。
一种(旧)方式是使用表格,但它并不是很好。现在你可以使用一些好的第三方库,如phpmailer或其他。 您需要应用内联css,因为提供商不支持外部CSS。