获取Google表单ID以进行修改

时间:2018-09-19 15:02:08

标签: google-apps-script google-sheets google-sheets-api google-form

我正在使用Google表单。我提交表格。如何通过使用Google Apps脚本获得一个/链接来编辑此表单的答案?

我想发送一封电子邮件,其中包含用于编辑多封电子邮件答案的链接,而不是仅一封电子邮件(如Google表单所提供)。

1 个答案:

答案 0 :(得分: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());
}

参考文献: