Google Apps Script - Gmail,永久删除垃圾箱中带有特定标签的电子邮件 [英] Google Apps Script - Gmail, delete forever e-mails in trash with specific label

查看:24
本文介绍了Google Apps Script - Gmail,永久删除垃圾箱中带有特定标签的电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个脚本,该脚本可以立即和永久地自动删除来自某个发件人的电子邮件,因为 Gmail 只允许过滤器将电子邮件发送到垃圾箱 30 天.请不要建议默认过滤器就足够了,至于我的情况,重要的是我不知道我收到了来自该发件人的电子邮件.

I'm trying to make a script that automatically deletes e-mails from a certain sender immediately and permanently, as Gmail only allows for a filter which sends an e-mail to trash for 30 days. Please do not suggest that the default filter is enough, as for my situation, it is vital that I do not know that I was sent an e-mail from this sender.

我当前的脚本如下所示:

My current script looks like this:

function deleteForever(labelName) {
    var threads = GmailApp.search("in:trash label:" + labelName);
    for (var i = 0; i < threads.length; i++) {
      threads[i].moveToTrash(); // Where I would need a delete forever trigger
    }
};

但是,我一直无法找到使用 GmailThread 并将其永久删除的方法,因为不存在用于此目的的功能.我想看看是否有办法使用 JavaScript 完成任务,但一直找不到方法.

However, I have been unable to figure out a way to use a GmailThread and to delete it permanently as there does not exist a function for this purpose. I was looking to see if there was a way I could finish the task using JavaScript, but have been unable figure out a method.

有谁知道我如何设置这些电子邮件以在收到时永久删除自己?

Does anyone have an idea how I can set these e-mails to delete themselves permanently when received?

推荐答案

按照设计,不可能使用 GmailApp 永久删除电子邮件.

It is not possible, by design, to delete an email permanently using GmailApp.

这篇关于Google Apps Script - Gmail,永久删除垃圾箱中带有特定标签的电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆