获取谷歌表ID为编辑(Get Google Form ID for edit)

2019-10-30 09:22发布

我使用谷歌表单。 我提交表单。 我怎样才能得到一个/链接编辑这种形式的答案,通过使用谷歌Apps的脚本?

我想送含而不只是1电子邮件中的链接进行编辑答案多封邮件,电子邮件(如谷歌的形式提供)。

Answer 1:

如果你要链接编辑的“答案”已经提交,

function onFormSubmit(e){ //Trigger for this function installed from form(not spreadsheet)
    MailApp.sendEmail("recipient@example.com,recipient2@example.com",
        "Your form has a new response. Form response edit link below:",
         e.response.getEditResponseUrl());
}

参考文献:

  • 提交表单事件对象
  • ResponseUrl
  • MailApp
  • 触发安装


文章来源: Get Google Form ID for edit