我正在尝试使用 Google Apps 脚本将我的大邮件从 Gmail 移动到 Google 站点。该脚本运行没有问题,但是当附件大小超过 10Mo 时发生错误:
“服务器错误,请稍后再试……”
var att = ms[m].getAttachments();
for (var a=0; a<att.length; a++){
tab[3][m][5][a] = att[a].copyBlob();
...
}
...
var atttach = post.addHostedAttachment(tab[3][i][5][b]);
...