Apps脚本发送旧的反馈页面,但在电子邮件中发送新的反馈

时间:2018-12-08 21:07:12

标签: google-apps-script

我是Google应用脚本的初学者

我想向用户发送反馈页面,并以html形式输入反馈。 该脚本将我所做的更改考虑为电子邮件答案。 但反馈页面始终使用旧的 form.html 而不是新的 antwortSeite.html

我是否还应该在表单内部使用发布作为网络应用? 我使用 Code.gs 文件执行此操作。

我尝试了此操作,但找不到任何更新。

fileNameAntwortSeite = 'antwortSeite.html'; // <?= email ?>
var template = HtmlService.createTemplateFromFile(fileNameAntwortSeite);
template.email = 'huibuh@somebody.com'; 
antwortHtml = template.evaluate().getContent()
MailApp.sendEmail({to: kundenEmail, subject: 'test createTemplateFromFile'
                       , htmlBody: antwortHtml});      
return antwortHtml;

0 个答案:

没有答案