create_forwarding_address
Enables users to set up an email forwarding address for redirecting messages from Gmail to a specified destination email.
Instructions
Creates a forwarding address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forwardingEmail | Yes | An email address to which messages can be forwarded |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"forwardingEmail": {
"description": "An email address to which messages can be forwarded",
"type": "string"
}
},
"required": [
"forwardingEmail"
],
"type": "object"
}