Export Notes from Apple Notes to Evernote
I give up, Evernote is the only good choice to make notes, is not perfect but is the only that really works.
This code do the job to migrate notes taken with Apple Notes.
tell application “Notes”
repeat with thisMessage in notes
set myTitle to the name of thisMessage
set myText to the body of thisMessage
tell application “Evernote”
try
create note with html myText title myTitle notebook “Imported Notes” tags “imported_note”
delay 0.6
on error
display dialog myTitle
end try
end tell
end repeat
end tell
