Skip to content

Instantly share code, notes, and snippets.

@bzerangue
Created January 12, 2016 20:12
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save bzerangue/fa3bcedf29c42d02bf3e to your computer and use it in GitHub Desktop.
Save bzerangue/fa3bcedf29c42d02bf3e to your computer and use it in GitHub Desktop.
Applescript: Import Apple Notes to Evernote
tell application "Notes"
set theMessages to every note
repeat with thisMessage in theMessages
set myTitle to the name of thisMessage
set myText to the body of thisMessage
set myCreateDate to the creation date of thisMessage
set myModDate to the modification date of thisMessage
tell application "Evernote"
set myNote to create note with text myTitle title myTitle notebook "Imported Notes" tags ["imported_from_notes", "El Capitan", "Another_Example_Tag"]
set the HTML content of myNote to myText
set the creation date of myNote to myCreateDate
set the modification date of myNote to 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