set_default_smime_info
Set the default S/MIME configuration for a specified email alias in Gmail to enhance secure email communication and ensure consistent encryption settings.
Instructions
Sets the default 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"
}