Last active
November 29, 2021 14:07
-
-
Save adminy/1c7e38f1f0e7bdeceece5107a5954604 to your computer and use it in GitHub Desktop.
Google drive Download Entire Gmail Stack
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
const getMessage = message => Utilities.newBlob(message.getRawContent(), null, `${['Id', 'Subject', 'Date'].map(action => message['get' + action]()).join('_')}.eml`) | |
const getThread = thread => Utilities.zip(thread.getMessages().map(message => getMessage(message)), thread.getId() + '_' + thread.getFirstMessageSubject() + '.zip') | |
const getInbox = label => GmailApp.search(label).map(thread => getThread(thread)) | |
const labels = GmailApp.getUserLabels().map(label => 'label:' + label.getName()) | |
const emails = ['in:sent', 'in:inbox', ...labels].map(label => Utilities.zip(getInbox(label), label + '.zip')) | |
DriveApp.createFile(Utilities.zip(emails, 'emails.zip')) |
Here is a gist for sorting your mails into the right labels:
const fromTo = {
'[email protected]': 'tools',
'[email protected]': 'tools',
'[email protected]': 'tools',
'@am.atlassian.com': 'tools',
'atlassian.net': 'tools',
'@expensify.com': 'money',
'[email protected]': 'money'
}
const senderTo = {
'google': 'calendar',
'expensify': 'money'
}
function moveTo (thread, label) {
thread.addLabel(GmailApp.getUserLabelByName(label))
thread.moveToArchive()
console.log(label, ' → ', thread.getFirstMessageSubject())
}
function checkSender (thread, sender) {
for (const name in senderTo) {
sender.includes(name) && moveTo(thread, senderTo[name])
}
}
function checkPeople (thread, messages) {
const people = [...new Set(messages.map(msg => [msg.getFrom(), msg.getCc(), msg.getBcc()]).flat().filter(x => x))]
for (const from in fromTo) {
people.some(person => person.includes(from)) && moveTo(thread, fromTo[from])
}
}
function emailSorter() {
const inbox = GmailApp.getInboxThreads()
for (const thread of inbox) {
const messages = thread.getMessages()
const sender = messages[0].getHeader('Sender')
sender ? checkSender(thread, sender) : checkPeople(thread, messages)
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perhaps instead of zips, its wiser to figure out how Mbox format works, so that its easier to import the emails.