Skip to content

Instantly share code, notes, and snippets.

@thomasrstegelmann
Last active July 27, 2016 16:46
Show Gist options
  • Save thomasrstegelmann/d7bd0e2b2776efb1910d to your computer and use it in GitHub Desktop.
Save thomasrstegelmann/d7bd0e2b2776efb1910d to your computer and use it in GitHub Desktop.
An AppleScript that sends a random iMessage of love to your partner: You need to adjust the e-mail address to your special one and store this on your desktop for this special moment when you want to share some love, but just don't have the time.
set messages to {"Love you! 😍", "You are the best!", "Kiss 😘😘", "😘", "😍😍😍", "πŸ’‹"}
set message to some item of messages
tell application "Messages"
send message to buddy "apple.id@service.com" of (service 1 whose service type is iMessage)
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment