Input schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Visitor's full name (1-120 characters).",
"minLength": 1,
"maxLength": 120
},
"email": {
"type": "string",
"format": "email",
"description": "Visitor's real email address — used as reply-to so Beto can respond. Must be a real address the user controls. Max 320 characters.",
"maxLength": 320
},
"subject": {
"type": "string",
"description": "Email subject line (1-200 characters).",
"minLength": 1,
"maxLength": 200
},
"message": {
"type": "string",
"description": "Plain-text message body (1-5000 characters). HTML is not rendered.",
"minLength": 1,
"maxLength": 5000
}
},
"required": [
"name",
"email",
"subject",
"message"
]
}