messages_compose_message
Open Messages app with a pre-filled message or automatically send it to a recipient using macOS AppleScript integration.
Instructions
[iMessage operations] Open Messages app with a pre-filled message to a recipient or automatically send a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto | No | Automatically send the message without user confirmation | |
body | No | Message body text | |
recipient | Yes | Phone number or email of the recipient |
Input Schema (JSON Schema)
{
"properties": {
"auto": {
"default": false,
"description": "Automatically send the message without user confirmation",
"type": "boolean"
},
"body": {
"default": "",
"description": "Message body text",
"type": "string"
},
"recipient": {
"description": "Phone number or email of the recipient",
"type": "string"
}
},
"required": [
"recipient"
],
"type": "object"
}