insert_smime_info
Upload S/MIME configuration to enable email encryption and digital signatures for a specific sender alias in Gmail.
Instructions
Insert (upload) the given S/MIME config for the specified send-as alias
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sendAsEmail | Yes | The email address that appears in the 'From:' header | |
| encryptedKeyPassword | Yes | Encrypted key password | |
| pkcs12 | Yes | PKCS#12 format containing a single private/public key pair and certificate chain |
Input Schema (JSON Schema)
{
"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"
}