update_auto_forwarding
Configure automatic email forwarding rules to redirect incoming messages to another address while managing message disposition in your Gmail account.
Instructions
Updates automatic forwarding settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | Yes | Whether all incoming mail is automatically forwarded to another address | |
| emailAddress | Yes | Email address to which messages should be automatically forwarded | |
| disposition | Yes | The state in which messages should be left after being forwarded |
Input Schema (JSON Schema)
{
"properties": {
"disposition": {
"description": "The state in which messages should be left after being forwarded",
"enum": [
"leaveInInbox",
"archive",
"trash",
"markRead"
],
"type": "string"
},
"emailAddress": {
"description": "Email address to which messages should be automatically forwarded",
"type": "string"
},
"enabled": {
"description": "Whether all incoming mail is automatically forwarded to another address",
"type": "boolean"
}
},
"required": [
"enabled",
"emailAddress",
"disposition"
],
"type": "object"
}