Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created May 15, 2019 19:40
Show Gist options
  • Select an option

  • Save BetterProgramming/8eddd721c249505c657eb8592028ee9a to your computer and use it in GitHub Desktop.

Select an option

Save BetterProgramming/8eddd721c249505c657eb8592028ee9a to your computer and use it in GitHub Desktop.
# sendMessage.scpt
on run {targetPhoneNumber, targetMessageToSend}
tell application "Messages"
set targetService to 1st service whose service type = iMessage
set targetBuddy to buddy targetPhoneNumber of targetService
set targetMessage to targetMessageToSend
send targetMessage to targetBuddy
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment