如何在文本电子邮件中添加行?

时间:2018-10-22 01:58:36

标签: php text

首先,我不是程序员,完全迷路了。 我有一个简单的文本电子邮件,想要编辑以获取更多内容和多行内容。只要我可以设置换行符,我就希望消除html部分并使之成为纯文本。我读过有关使用\ r \ n换行符的信息,但在我测试发送的电子邮件中似乎不起作用。某些段落之间也将需要多个空白行。

<?php
$mail_from='member@mywebsite.com';
$mail_from_name='Business';
$mail_subject="2019 Planning";
$mail_text='Are you ready for the new year?
 Have you planned 2019's events
 or are you going to wait until the last minute?';
$mail_html='This is the HTML message body <b>in bold!</b>';
>

1 个答案:

答案 0 :(得分:1)

如果要使用\r \n之类的转义字符,则必须使用双引号对字符串进行求值。 php strings doc