gpt4 book ai didi

google-apps-script - Gmail 的应用程序脚本 - 搜索确切的主题

转载 作者:行者123 更新时间:2023-12-04 18:34:10 25 4
gpt4 key购买 nike

我每天都会收到多封自动电子邮件。一个主题是“每日报告”,一个主题是“每日报告详细信息”。这是我使用的脚本,但是一旦电子邮件开始不按时间顺序发送,我有时会发现错误的。

 var threads = GmailApp.search('Daily Report') //search gmail with the given query(partial name using * as a wildcard to find anything in the current subject name).
var msgs = GmailApp.getMessagesForThreads(threads);

有没有办法告诉搜索我想要主题为“每日报告”而不是“每日报告详细信息”的邮件?

谢谢

最佳答案

就像提到的@Pierre-Marie Richard 和@Cooper 一样,您可以使用内置的 Gmail 搜索功能。以下是 Gmail Search Functions 的列表,就像@Cooper 提到的那样,您最好使用以下内容:

var threads = GmailApp.search('subject:"Daily Report"-Details')
var msgs = GmailApp.getMessagesForThreads(threads);

引号 ( "" ) 用作完全匹配,减号 (' - ') 用于排除单词。
如果这仍然不起作用,请告诉我,我会进一步调查。

祝你好运 :)

关于google-apps-script - Gmail 的应用程序脚本 - 搜索确切的主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44174943/

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