我有一个groupList数组,用于在每个数组中存储不同的数据。我想知道如何从groupList发送编译的数据列表。我可以走很长的路,只做groupList [1],groupList [2] ......等等。但我的groupList非常庞大。我的代码不起作用,因为它不允许'object'参数中的循环。
MailApp.sendEmail(
"john@doh.com",
"Generated Report " + new Date(), // header
"", // body
{htmlBody:
for (i = 0; i < groupList.length; i++) { // <-- Syntax error
groupList[i];
}
, attachments: chart });
}