- Go to https://script.google.com
- Create a New Project
- Replace the
Code.gs
file it creates for you with the javascript below (copy/paste) - Save the script
- Go to Triggers (looks like an alarm clock on left-hand side)
- Create a Trigger that acts every 10 minutes and calls
filterNGPVANSpam
- You'll need to authorize this script to act on your behalf, which may require that you use the scary "Advanced" section to allow the script to read/write to your email inbox.
Forked from canadaduane/Filter-NGPVAN-Political-Emails.md
Created
October 23, 2023 16:36
-
-
Save jonathanhle/0425c6118b7755c1a99d80a451050c4e to your computer and use it in GitHub Desktop.
Move Incoming NGPVAN Political Emails in Gmail to Spam (Google Apps Script)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adapted with thanks from: | |
// https://www.geektron.com/2014/01/how-to-filter-gmail-using-email-headers-and-stop-via-spam/ | |
function filterNGPVANSpam() { | |
var threads = GmailApp.getInboxThreads(0, 5); | |
threads.concat(GmailApp.search('category:promotions', 0, 5)); | |
for (var i = 0; i < threads.length; i++) { | |
var messages = threads[i].getMessages(); | |
for (var j = 0; j < messages.length; j++) { | |
var message = messages[j]; | |
var body = message.getRawContent(); | |
var matchedNGPVAN = | |
body.match(/^List-Unsubscribe:\s*<(.*ngpvan\.com.*)>\s*$/m) || | |
body.match(/^Received:.*ngp(van|web)\.com/m); | |
if(matchedNGPVAN){ | |
GmailApp.moveThreadToSpam(threads[i]); | |
} | |
Utilities.sleep(500); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment