set_autoresponder
Automate email replies by configuring autoresponders for Migadu mailboxes. Set active status, subject, body, and expiration date for each response.
Instructions
Configure mailbox autoresponders. List of dicts with: target (email/local), active (required), subject (optional), body (optional), expires_on (optional).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoresponders | Yes |
Input Schema (JSON Schema)
{
"properties": {
"autoresponders": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Autoresponders",
"type": "array"
}
},
"required": [
"autoresponders"
],
"type": "object"
}