1

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

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

谢谢!
-担

4

1 回答 1

1

我相信您只有在运行 Google Apps for Business/Education/Domain 时才能收集电子邮件。

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

干杯。

于 2013-06-13T22:12:26.697 回答