Skip to content

Instantly share code, notes, and snippets.

@hachesilva
Last active April 30, 2024 14:22
Show Gist options
  • Save hachesilva/226d58a08b63c49fff79c741fb4c3f92 to your computer and use it in GitHub Desktop.
Save hachesilva/226d58a08b63c49fff79c741fb4c3f92 to your computer and use it in GitHub Desktop.
Find the most frequent senders in your Gmail account
# Source: https://ryanfb.github.io/etc/2019/08/26/finding_the_most_frequent_senders_in_your_gmail_account.html
# Download a copy of your gmail account from https://takeout.google.com/
grep '^From:' ~/Downloads/YOUR_TAKEOUT_FILE.mbox | cut -d'<' -f2 | tr -d '>' | sort | uniq -c | sort -rn > gmail-frequent-senders.txt
@leodevbro
Copy link

I created a video tutorial about NodeJS method to find frequency of senders, receivers and more. The NodeJS method is much easier, much faster and more reliable than Apps Script method. NodeJS method can analyze 200,000 mails in about 30 minutes.

https://www.youtube.com/watch?v=KKU84ogffeM

gmail-info-thumb_jpg_720

@hachesilva
Copy link
Author

@leodevbro Awesome, thanks

@leodevbro
Copy link

Feel free to reach me any time with any questions, comments and so on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment