list_smime_info
Retrieve S/MIME configurations for a specified send-as email alias to manage and verify secure email settings in Gmail.
Instructions
Lists S/MIME configs for the specified send-as alias
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"sendAsEmail": {
"description": "The email address that appears in the 'From:' header",
"type": "string"
}
},
"required": [
"sendAsEmail"
],
"type": "object"
}