我有一个从中收集用户输入的 TextArea()。
我想将此输入返回到电子邮件中,但保留格式很重要。如果有人输入回报或段落来分隔他们的陈述,我希望将其反映在输出中。
目前,我将此输入分配给一个变量,然后在 MailApp() 调用中引用该变量。它不会通过此过程保留格式:
var user_input=e.parameter.text_area_input;
MailApp.sendEmail({
to: "someemail@somedomain.com",
subject: "This is a subject.",
htmlBody: "Here is the text that was entered: <BR>" + user_input
})
我怎样才能做到这一点?