gpt4 book ai didi

google-apps-script - Gmail 服务事件?

转载 作者:行者123 更新时间:2023-12-02 20:37:44 24 4
gpt4 key购买 nike

每当有新电子邮件到达我的收件箱时,我想运行处理函数。我正在看https://developers.google.com/apps-script/guides/triggers/events 。我没有找到在电子邮件到达时触发事件的方法。我错过了什么吗?

最佳答案

正如 Serge insas 所说,Apps 脚本中没有基于电子邮件的触发器。作为一个不完美的解决方法,您可以每 5 分钟运行一个脚本并处理在最新间隔内到达的消息。这是一个基于 this post 的示例:

function checkEmail() {
var interval = 5; // if the script runs every 5 minutes; change otherwise
var date = new Date();
var timeFrom = Math.floor(date.valueOf()/1000) - 60 * interval;
var threads = GmailApp.search('is:inbox after:' + timeFrom);
for (var i = 0; i < threads.length; i++) {
threads[i].reply("This is auto-reply for demonstration; you probably want to do something else here.");
}
}

关于google-apps-script - Gmail 服务事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46692451/

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