verify_send_as
Sends a verification email to confirm ownership of a Gmail send-as alias, enabling users to send emails from alternative addresses through their Gmail account.
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)
{
"properties": {
"sendAsEmail": {
"description": "The send-as alias to be verified",
"type": "string"
}
},
"required": [
"sendAsEmail"
],
"type": "object"
}