可以用 script.google.com ,自己写个脚本操作 gmail 邮件。然后设定时运行(比如 archive 所有 [tuna]
的邮件)。完全不用管 oauth 的东西,非常方便。

我用这个来每个小时把所有 archive 的邮件标为已读(inbox 里有时候直接 archive 了未读的邮件会显示为粗体,让我很不爽)

```
function markArchivedAsRead() {
  var threads = GmailApp.search('label:unread -label:inbox');
  GmailApp.markThreadsRead(threads);
}
```

当然可以做的事情还很多。。。

On Tue, May 24, 2016 at 8:52 AM Cheng Zhen <[email protected]> wrote:

> 邮件尾部:
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
>
> --
> Cheng Zhen
>
> On May 24, 2016, at 08:49, 刘阳 <[email protected]> wrote:
>
> 求助,怎么退订这些通知邮件,太多了,没时间看
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "TUNA 主邮件列表" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "TUNA 主邮件列表" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>
-- 
Best regards,

Yutian Li

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

回复