我是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;