我想在php中发送一封简单的电子邮件。 是否可以在不使用html邮件的情况下以粗体显示第二行文字?
<?php
$msg = "First line of text\nSecond line of text";
mail("someone@example.com","My subject",$msg);
?>
答案 0 :(得分:2)
您不能在普通旧文本电子邮件(MIME类型为text/plain
)中以任何方式加粗或格式化。这就是为什么HTML(MIME类型text/html
)形成电子邮件的原因。
仅供参考,将MIME类型设置为HTML由Content-Type: text/html; charset=UTF-8