愚蠢的新手问题。我可以使用生成电子邮件正文,
email.setMsg("Paragraph 1 goes here.");
输出:
Paragraph 1 goes here.
现在我想要生成的看起来像:
Paragraph 1 goes here.
Paragraph 2 goes here.
但如果我使用:
email.setMsg("Paragraph 1 goes here.");
email.setMsg("Paragraph 2 goes here.");
我得到的是:
Paragraph 2 goes here.
如何添加手动换行符?