HTML标记Google Apps脚本中的换行符

时间:2017-08-19 22:15:28

标签: html google-apps-script

我正在编写Google Apps脚本中的第一个项目,以便在解析电子表格数据后发送电子邮件。我需要在<?=nameList?>中填入一个名称列表,每个名称都在其自己的行上。我在循环中使用这些行构建字符串:    nameList = nameList.concat(finalName) nameList = nameList.concat("\r\n")

日志显示格式正确的字符串:

[17-08-19 14:59:15:636 PDT] Former member string: a Monster b Monster d Monster f Monster g Monster

但在实际的电子邮件中,它们出现了: a Monster b Monster d Monster f Monster g Monster This thread没有解决问题。

1 个答案:

答案 0 :(得分:0)

您可以使用htmlBody参数。

    MailApp.sendEmail({
         to: "recipient@example.com",
         subject: "Test",
         htmlBody:nameList
})