TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Google Apps Script for Gmail to filter and sort email from Gitlab

63 点作者 mattst88超过 3 年前

7 条评论

dataflow超过 3 年前
More interesting than GmailApp, DriveApp, etc. are the Gmail, Drive etc. classes. They're under the "advanced" services, and far more powerful (and faster). Highly recommend them for more serious uses of Google Apps Script.
评论 #29738650 未加载
agentdrtran超过 3 年前
Apps Script is amazing and a sorely under-appreciated feature in Workspace.
评论 #29734611 未加载
评论 #29736338 未加载
评论 #29734781 未加载
rrdharan超过 3 年前
See also <a href="https:&#x2F;&#x2F;github.com&#x2F;ranmocy&#x2F;gmail-automata" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ranmocy&#x2F;gmail-automata</a> for a more generalized variant.
评论 #29738803 未加载
评论 #29740524 未加载
londons_explore超过 3 年前
As far as I&#x27;m aware, there is no way to trigger an apps script script to run when an email arrives.<p>That leads to polling, which ends up with a lackluster user experience. I don&#x27;t want a random 30 second delay added to all my mail delivery.
评论 #29737367 未加载
navbaker超过 3 年前
I was placed on some sort of spam list immediately following a PayPal dispute with a seller and found this thread that helped me tame the spam bombing I’ve experienced ever since: <a href="https:&#x2F;&#x2F;webapps.stackexchange.com&#x2F;questions&#x2F;89119&#x2F;how-to-filter-messages-with-animated-emoji-in-the-subject-in-gmail" rel="nofollow">https:&#x2F;&#x2F;webapps.stackexchange.com&#x2F;questions&#x2F;89119&#x2F;how-to-fil...</a><p>The majority of the spam came in with emojis in the from or subject line, so this was immediately helpful for that, then I just add a rule whenever I notice certain phrases popping up more often.<p>I’d be delighted if someone can tell me I’m wrong, but it seems like Gmail filters don’t have built in options for stuff like emojis or regular expressions. Very disappointing that I have to brute force script my own filters.
评论 #29738191 未加载
gbrindisi超过 3 年前
I&#x27;ve used <a href="https:&#x2F;&#x2F;github.com&#x2F;mbrt&#x2F;gmailctl&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mbrt&#x2F;gmailctl&#x2F;</a> to tame my inbox with some degrees of success, but gmail filters are just so flaky.<p>Next step in my things-to-try list is to just download the inbox via imap and sort it out locally.
评论 #29735543 未加载
评论 #29735876 未加载
anshumankmr超过 3 年前
Very cool. I have been using AppScript at my work as well to sync data from a sheet to Firebase and it works quite well.