insert_smime_info
Upload and configure S/MIME settings for a specific send-as email alias using PKCS#12 format, ensuring secure email communication via the Gmail MCP server.
Instructions
Insert (upload) the given S/MIME config for the specified send-as alias
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| encryptedKeyPassword | Yes | Encrypted key password | |
| pkcs12 | Yes | PKCS#12 format containing a single private/public key pair and certificate chain | |
| 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": {
"encryptedKeyPassword": {
"description": "Encrypted key password",
"type": "string"
},
"pkcs12": {
"description": "PKCS#12 format containing a single private/public key pair and certificate chain",
"type": "string"
},
"sendAsEmail": {
"description": "The email address that appears in the 'From:' header",
"type": "string"
}
},
"required": [
"sendAsEmail",
"encryptedKeyPassword",
"pkcs12"
],
"type": "object"
}