Last active
May 24, 2016 06:38
-
-
Save LeiHao0/c155b854166dac81a099579b6c2daf45 to your computer and use it in GitHub Desktop.
sendMessage.applescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| crontab -e | |
| 0-59 0-23 1-31 1-12 0-7 osascript /Users/Art/Desktop/sendMessage.applescript $PhoneNumber "Text Message" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on run {targetBuddyPhone, targetMessage} | |
| tell application "Messages" | |
| set targetService to 1st service whose service type = iMessage | |
| set targetBuddy to buddy targetBuddyPhone of targetService | |
| 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