首先,我不是程序员,完全迷路了。 我有一个简单的文本电子邮件,想要编辑以获取更多内容和多行内容。只要我可以设置换行符,我就希望消除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>';
>