mail_create_email
Generate and send a new email via Mail.app by specifying the recipient, subject, and body using AppleScript automation for macOS applications.
Instructions
[Mail operations] Create a new email in Mail.app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Email body | |
recipient | Yes | Email recipient | |
subject | Yes | Email subject |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Email body",
"type": "string"
},
"recipient": {
"description": "Email recipient",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
}
},
"required": [
"recipient",
"subject",
"body"
],
"type": "object"
}