我想在使用Google文档的网络浏览器和Gmail应用程序中运行的电子邮件中嵌入表单。 我已经能够嵌入它并使用以下代码在不同的浏览器中使用它,但我无法在应用程序中使用它。 问题是我希望用户通过勾选“是”或“否”,然后单击“接受”按钮进行响应。
你能帮帮我吗? 提前致谢 form.setRequireLogin(false);
var url = form.getPublishedUrl();
var response = UrlFetchApp.fetch(url);
var htmlBody = HtmlService.createHtmlOutput(response).getContent();
MailApp.sendEmail(responsableDirecto,
"Course request",
"",
{
name: 'Course request confirmation'+""+program+""+name,
htmlBody: htmlBody,
attachments: [documetoDatos],
});