Created
November 29, 2011 17:07
-
-
Save pdxmph/1405554 to your computer and use it in GitHub Desktop.
Convert Mac Mail Notes to Evernote (Applescript)
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
tell application "Mail" | |
set theMessages to every message of the mailbox "NoteMigrate" | |
repeat with thisMessage in theMessages | |
set myTitle to the subject of thisMessage | |
set myText to the content of thisMessage | |
set myCreateDate to the date sent of thisMessage | |
tell application "Evernote" | |
create note with text myText¬ | |
title myTitle ¬ | |
notebook "Imported Notes" ¬ | |
tags "imported_note" ¬ | |
created myCreateDate | |
end tell | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment