在 Google Apps 脚本中,有没有办法让电子邮件在没有过滤器的情况下跳过收件箱?

Is there a way to make emails skip the inbox without a filter in Google Apps Script?

我试图仅在 Apps 脚本中创建一个过滤器,但为了让我的过滤器正常工作,我需要一个可以使电子邮件跳过收件箱的功能。像这样,

threads[i].markRead();
threads[i].addLabel(important);
threads[i].skipInbox()

有函数

.moveToInbox()

但我找不到相反的方法。 有人可以建议怎么做吗? 谢谢!

moveToInbox()的同位语是moveToarchive();

参考

相关