verify_send_as
Verify a send-as email alias by sending a confirmation email to ensure the alias is valid and can be used for sending messages through Gmail MCP.
Instructions
Sends a verification email to the specified send-as alias
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sendAsEmail | Yes | The send-as alias to be verified |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sendAsEmail": {
"description": "The send-as alias to be verified",
"type": "string"
}
},
"required": [
"sendAsEmail"
],
"type": "object"
}