configure_form_notifications
Set up and manage email notifications for form owners and respondents by configuring parameters like subject, body, and recipient details using a form ID.
Instructions
Configure email notifications for form owner and respondents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formId | Yes | The ID of the form | |
ownerNotifications | No | Owner notification settings | |
respondentNotifications | No | Respondent notification settings |
Input Schema (JSON Schema)
{
"properties": {
"formId": {
"description": "The ID of the form",
"type": "string"
},
"ownerNotifications": {
"description": "Owner notification settings",
"properties": {
"body": {
"type": "string"
},
"emailTo": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"fromName": {
"type": "string"
},
"replyTo": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"type": "object"
},
"respondentNotifications": {
"description": "Respondent notification settings",
"properties": {
"body": {
"type": "string"
},
"emailTo": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"fromName": {
"type": "string"
},
"replyTo": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"formId"
],
"type": "object"
}