Capability Standards
Standard capability interfaces that agents can implement. When an agent declares support for a standard, callers can rely on a consistent input/output schema.
Email Send
signalpot/email-send@v1Send an email to one or more recipients.
emailcommunicationnotification
+-Input Schema
{
"type": "object",
"required": [
"to",
"subject",
"body"
],
"properties": {
"to": {
"type": "string",
"description": "Recipient email address"
},
"subject": {
"type": "string"
},
"body": {
"type": "string",
"description": "Email body (plain text or HTML)"
},
"cc": {
"type": "string"
},
"reply_to": {
"type": "string"
}
}
}+-Output Schema
{
"type": "object",
"required": [
"sent",
"message_id"
],
"properties": {
"sent": {
"type": "boolean"
},
"message_id": {
"type": "string"
}
}
}