我正在尝试为我的G Suite邮箱创建一个自动化的归档脚本。
该脚本包含一个搜索查询,然后该查询应获取所有找到的结果,从收件箱中删除并向其添加自定义标签(存档)。
我在addLabel
部分中苦苦挣扎。它会引发错误InternalError: Cannot find method addLabel(string).
,但是当我检查文档时,它似乎是对正确对象的正确方法。
任何帮助将不胜感激。
自动Gmail存档
var ARCHIVE_LABEL = "archived";
var AUTO_ARCHIVE_AFTER = "30";
function Intialize() {
return;
}
function Install() {
ScriptApp.newTrigger("autoArchive")
.timeBased()
.at(new Date((new Date()).getTime() + 1000*60*2))
.create();
ScriptApp.newTrigger("autoArchive")
.timeBased().everyDays(1).create();
}
function Uninstall() {
var triggers = ScriptApp.getScriptTriggers();
for (var i=0; i<triggers.length; i++) {
ScriptApp.deleteTrigger(triggers[i]);
}
}
function autoArchive() {
var age = new Date();
age.setDate(age.getDate() - AUTO_ARCHIVE_AFTER);
var auto = Utilities.formatDate(age, Session.getScriptTimeZone(), "yyyy-MM-dd");
var search = "in:inbox is:read before:" + auto;
try {
var threads = GmailApp.search(search, 0, 100);
console.log("Found total:", threads.length); //This gives me 100 for the debug/test run which matches the result I should be getting
if (threads.length == 100) {
ScriptApp.newTrigger("autoArchive")
.timeBased()
.at(new Date((new Date()).getTime() + 1000*60*10))
.create();
}
for (var i=0; i<threads.length; i++) {
if(threads[i].isInInbox()){
console.log("So far so good. Let's add label")
threads[i].addLabel('archived'); // This throws back the error **InternalError: Cannot find method addLabel(string).**
}
}
} catch (e) {
console.log('Error');
console.log(e);
}
}
答案 0 :(得分:2)
此修改如何?
label
的{{1}}的类型为addLabel(label)
。
GmailLabel
的方法。请进行如下修改。
从:getUserLabelByName()
至:
for (var i=0; i<threads.length; i++) {
if(threads[i].isInInbox()){
console.log("So far so good. Let's add label")
threads[i].addLabel('archived'); // This throws back the error **InternalError: Cannot find method addLabel(string).**
}
}
createLabel()
的方法作为@Cooper的注释。如果我误解了您的问题,请告诉我。我想修改它。