Skip to content

Instantly share code, notes, and snippets.

@tbtstw
tbtstw / Code.gs
Created February 1, 2023 18:08
Spotify Takedown Report - Google App Script
function processTakedownMessages()
{
var threads = GmailApp.search("from:(spotify.com) subject:\"takedown notification\"");
var messages=[];
threads.forEach(function(thread)
{
thread.getMessages().forEach(function(message)
{
messages.push(message);
});