Skip to content

Instantly share code, notes, and snippets.

@rajiv
Last active December 16, 2015 07:28
Show Gist options
  • Save rajiv/5398606 to your computer and use it in GitHub Desktop.
Save rajiv/5398606 to your computer and use it in GitHub Desktop.
export apple mail previous recipients to a csv file.
echo 'first name,last name,email' > ~/recent.csv
sqlite3 -csv ~/Library/Application\ Support/AddressBook/MailRecents-v4.abcdmr 'select ZFIRSTNAME, ZLASTNAME, ZEMAIL from ZABCDMAILRECENT;' >> ~/recent.csv
@A-0-0-P
Copy link

A-0-0-P commented Oct 14, 2015

Thank you!

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