update_smtp
Modify SMTP settings to configure custom email notifications on VoiceAI-MCP-VAVicky by updating email, password, host, and port details.
Instructions
Update SMTP settings for custom email notifications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
smtp_email | Yes | SMTP email address | |
smtp_host | Yes | SMTP host | |
smtp_password | Yes | SMTP password | |
smtp_port | No | SMTP port |
Input Schema (JSON Schema)
{
"properties": {
"smtp_email": {
"description": "SMTP email address",
"type": "string"
},
"smtp_host": {
"description": "SMTP host",
"type": "string"
},
"smtp_password": {
"description": "SMTP password",
"type": "string"
},
"smtp_port": {
"description": "SMTP port",
"type": "string"
}
},
"required": [
"smtp_email",
"smtp_password",
"smtp_host"
],
"type": "object"
}