pb_system_test_email
Send test emails using predefined templates to verify email functionality on the PocketBase MCP Server. Test verification, password reset, and email change workflows.
Instructions
Send a test email (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email address to send test email to | ||
template | Yes | Email template to test |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Email address to send test email to",
"format": "email",
"type": "string"
},
"template": {
"description": "Email template to test",
"enum": [
"verification",
"password-reset",
"email-change"
],
"type": "string"
}
},
"required": [
"email",
"template"
],
"type": "object"
}