我使用php框架Lumen发送电子邮件(SMTP)。
在开发环境中,我使用Mailtrap测试电子邮件。我在双引号中有电子邮件的文本。像这样:
"exampleLine \r\n"
"exampleLine2 \r\n\r\n"
"exampleLine3 "
Mailtrap给我看的输出是:
ExampleLine
ExampleLine2
ExampleLine3
这很好。
但是当我们在发生的prod环境中使用sendgrid发送电子邮件时:
ExampleLineExampleLine2
ExampleLine3
它只是忽略了简单的新行。仅适用于双倍。
所有帮助将不胜感激。
PD: Content-Type: text/plain; charset=utf-8