我使用谷歌表单。 我提交表单。 我怎样才能得到一个/链接编辑这种形式的答案,通过使用谷歌Apps的脚本?
我想送含而不只是1电子邮件中的链接进行编辑答案多封邮件,电子邮件(如谷歌的形式提供)。
我使用谷歌表单。 我提交表单。 我怎样才能得到一个/链接编辑这种形式的答案,通过使用谷歌Apps的脚本?
我想送含而不只是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());
}