gpt4 book ai didi

google-apps-script - 获取 Gmail 类别

转载 作者:行者123 更新时间:2023-12-02 07:41:28 27 4
gpt4 key购买 nike

我曾经有一个有效的应用程序脚本,可以删除我的 Gmail 帐户中的旧促销电子邮件。

它使用了代码

var label = GmailApp.getUserLabelByName("Promotions");

获取标签,然后迭代通过label.getThreads()来确定每个线程是否足够旧,可以删除。

但是,Google 现在更改了 Gmail,因此自动分类现在位于 UI 中的 Categories 部分下,而不是在标签列表中,因此上面的内容现在返回 null.

如何修复我的代码以检索 Promotions 类别?我也尝试过类别/促销,但它也出现null

最佳答案

可以轻松搜索 Gmail 类别。

这里有一个小代码,用于查找每封促销邮件。结果是一个线程数组,您可以为每个线程添加 Label,以便您的旧脚本再次满意;-)

  var threads = GmailApp.search('category:promotions');// check the category Gmail added to the thread

documentation here

关于google-apps-script - 获取 Gmail 类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21509254/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com