我正在尝试设置我的第一个 Google 脚本。它应该从与我的搜索条件匹配的电子邮件集中删除一个标签,但是当我运行脚本时出现此错误:
Cannot retrieve (line 9, file "Code")
我的代码:
function ArchiveEmails() {
var misc_reps = GmailApp.search("from:(reports@example.com) \"Source: misc_reports\" \"The file was successfully processed\"");
var imp_tms_processing = GmailApp.getUserLabelByName('imp-tms-processing');
for (var i=0; i<misc_reps.length; i++) {
var misc_rep = misc_reps[i];
var id_string = misc_rep.getId(); //use to confirm specific email found in debugging
misc_rep.removeLabel(imp_tms_processing); // line 9
}
}
我不知道从这里去哪里;我找不到有关此问题的任何文档。