delete_smime_info
Remove S/MIME configurations for a specific send-as email alias in Gmail MCP to manage email security settings effectively.
Instructions
Deletes the specified S/MIME config for the specified send-as alias
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The immutable ID for the S/MIME config | |
| sendAsEmail | Yes | The email address that appears in the 'From:' header |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The immutable ID for the S/MIME config",
"type": "string"
},
"sendAsEmail": {
"description": "The email address that appears in the 'From:' header",
"type": "string"
}
},
"required": [
"sendAsEmail",
"id"
],
"type": "object"
}