我试图在一个标签下搜索线程。这是我搜索的代码:
//set "label" to label to be searched
var label = "sampleLabel"
//get all threads with the label
var emails = GmailApp.search('label: ' + label);
我在一个带有11个线程的标签上测试了它(每个都有一个消息),它只返回3个。
我之前看过这个问题,但这似乎是一个不同的问题。
我感谢你能给我的任何帮助。
答案 0 :(得分:0)
实际上有一种简单的方法可以获得具有特定标签的所有线程! See the method documentation here.
var LABEL = "mylabel";
// Get out labels by name
var label = GmailApp.getUserLabelByName(LABEL);
// The threads currently assigned to the label
var threads = label.getThreads();