create_send_as
Create a custom send-as email alias for your Gmail account to personalize the 'From:' header and manage professional identities with optional display name, reply-to address, and HTML signature.
Instructions
Creates a custom send-as alias
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displayName | No | A name that appears in the 'From:' header | |
isPrimary | No | Whether this address is the primary address | |
replyToAddress | No | An optional email address that is included in a 'Reply-To:' header | |
sendAsEmail | Yes | The email address that appears in the 'From:' header | |
signature | No | An optional HTML signature | |
treatAsAlias | No | Whether Gmail should treat this address as an alias |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"displayName": {
"description": "A name that appears in the 'From:' header",
"type": "string"
},
"isPrimary": {
"description": "Whether this address is the primary address",
"type": "boolean"
},
"replyToAddress": {
"description": "An optional email address that is included in a 'Reply-To:' header",
"type": "string"
},
"sendAsEmail": {
"description": "The email address that appears in the 'From:' header",
"type": "string"
},
"signature": {
"description": "An optional HTML signature",
"type": "string"
},
"treatAsAlias": {
"description": "Whether Gmail should treat this address as an alias",
"type": "boolean"
}
},
"required": [
"sendAsEmail"
],
"type": "object"
}