Skip to content

Instantly share code, notes, and snippets.

@dijeferson
Forked from crsrusl/Things-Outlook.AppleScript
Created November 21, 2022 13:45
Show Gist options
  • Save dijeferson/f6a87fd5845d8c50862cffda70f0d19d to your computer and use it in GitHub Desktop.
Save dijeferson/f6a87fd5845d8c50862cffda70f0d19d to your computer and use it in GitHub Desktop.
tell application "Microsoft Outlook"
set theMessage to first item of (get current messages)
set theSubject to the subject of theMessage
set theBody to the plain text content of theMessage
set theID to the id of theMessage
end tell
tell application "Things3"
show quick entry panel with properties {name:theSubject, notes:theBody}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment