delete_send_as
Remove a specified send-as alias from your Gmail account to simplify email management and maintain accurate sender identities.
Instructions
Deletes the specified send-as alias
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sendAsEmail | Yes | The send-as alias to be deleted |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sendAsEmail": {
"description": "The send-as alias to be deleted",
"type": "string"
}
},
"required": [
"sendAsEmail"
],
"type": "object"
}