Skip to content

Instantly share code, notes, and snippets.

@nurtext
Created November 7, 2012 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nurtext/4031775 to your computer and use it in GitHub Desktop.
Save nurtext/4031775 to your computer and use it in GitHub Desktop.
Mail 2 Reminder
tell application "Mail"
using terms from application "Mail"
set theSelection to selection
set theMessage to first item of theSelection
set theBody to "message:%3C" & message id of theMessage & "%3E"
set theSubject to the subject of theMessage
tell application "Reminders"
set theList to first item of reminders
make new reminder with properties {name:theSubject, body:theBody, container:theList}
end tell
end using terms from
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment