PHP:向PHPMailer纯文本电子邮件添加新行

时间:2017-08-12 18:29:32

标签: php email smtp phpmailer

我正在使用PHPMailer从我的PHP脚本发送到SMTP服务器。

要使用php的邮件功能添加新行,我只需添加

"\r\n", 

然而,这不适用于PHPMailer。

我试过了

'\r\n'
\r
\n
chr(20)

如何添加新行?

代码是

$message =  $contents .
                "\r\n" .
                "\r\n" .
                'Regards';
$mail->AltBody = $message;

其中$内容只是一句话。

1 个答案:

答案 0 :(得分:1)

您可以使用<br>标记。因为所有的身体都是HTML。因此,您可以使用<br>代码创建新行。

我用过这样的话:

$mail->Body = 'text1 <br> text2';