我是Google Apps新手。小公司的电子邮件使用Google Apps托管在Google Mail服务器中。我想知道是否有任何方法可以为Google App Gmail编写插件,例如扫描要标记的电子邮件是重要还是进行一些额外处理? 我们非常感谢能够实现相同目标的小教程!
由于
答案 0 :(得分:0)
这是一个示例代码段,它会将来自特定发件人的所有邮件标记为重要。
var threads = GmailApp.search('from:example.com');
for (var i=0; i<threads.length; i++) {
threads[i][0].markImportant();
}