Skip to content

Instantly share code, notes, and snippets.

@berezovskyi
Forked from shapiro125/import.scpt
Created February 18, 2018 19:44
Show Gist options
  • Save berezovskyi/8fef5656e30435b3cacdb7d1b23a77c0 to your computer and use it in GitHub Desktop.
Save berezovskyi/8fef5656e30435b3cacdb7d1b23a77c0 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
# added identification of folder to create notebooks based on existing folder hierarchy
set myFolder to the container of thisMessage
set myFolder to the name of myFolder
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 myFolder tags ["Imported from Notes"]
set the HTML content of myNote to myText
set the creation date of myNote to myCreateDate
set the modification date of myNote to myModDate
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment