Jump to content

thedave42

Level 1
  • Posts

    1
  • Joined

  • Last visited

Everything posted by thedave42

  1. To make the AppleScript version add in reverse order: tell application "Mail" set theOMessages to every message of the mailbox "NotesExport" set theMessages to reverse of theOMessages 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 repeatend tell
×
×
  • Create New...