我有一个Google Apps脚本,它将通过电子邮件将表单提交给填写表单的用户。我目前只有我的电子邮件拥有抄送脚本,但似乎无法弄清楚如何或是否可以将表单提交抄送给多封电子邮件。
MailApp.sendEmail(emailTo,subject,body, {
htmlBody: body,
cc: 'iscaro@oakland.edu'});
答案 0 :(得分:1)
只需用逗号分隔所需的抄送收件人,如下所示:
MailApp.sendEmail(emailTo,subject,body, {
htmlBody: body,
cc: 'iscaro@oakland.edu,someother@email,etc'});