Google Apps脚本不支持setCollectEmail

时间:2013-06-13 22:08:03

标签: google-apps-script google-docs-api google-spreadsheet-api google-form

我尝试根据Google电子表格中的条目自动创建表单。我想将表单设置为使用以下代码自动收集电子邮件:

function createForm()  
{  
   var form = FormApp.create('New Form')  
                .setCollectEmail(true);

    //I have also tried form.setCollectEmail(true);  
}

除非我运行它,否则会收到错误消息"此操作不受支持"。

我引用:https://developers.google.com/apps-script/reference/forms/form

谢谢!
-Dan

1 个答案:

答案 0 :(得分:1)

我相信如果您运行的是Google Apps for Business / Education / Domain,则只能收集电子邮件。

见这里:https://developers.google.com/apps-script/reference/forms/form#collectsEmail()

干杯。