我在应用脚本程序中有以下内容:
// get all email threads that match label from Sheet
var threads = GmailApp.search ("label:" + label);
因为我将处理过的线程移动到另一个标签,所以有时我没有未经处理的线程。如果没有要处理的线程,我该如何终止执行?
答案 0 :(得分:1)
这会对你有用吗?
if (!threads || threads.length < 1) {
return;
}