Google Super

GOOGLESUPER_FORWARD_MESSAGE

Forward an existing Gmail message to specified recipients, preserving original body and attachments.

Remote googlesuper

Other tools also called GOOGLESUPER_FORWARD_MESSAGE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "user_id": {
      "type": "string",
      "title": "User Id",
      "default": "me",
      "examples": [
        "me",
        "[email protected]"
      ],
      "description": "User's email address or 'me' for the authenticated user."
    },
    "message_id": {
      "type": "string",
      "title": "Message Id",
      "examples": [
        "17f45ec49a9c3f1b"
      ],
      "minLength": 1,
      "description": "ID of the message to forward, obtainable from actions like 'List Messages'."
    },
    "additional_text": {
      "type": "string",
      "title": "Additional Text",
      "default": null,
      "examples": [
        "Please see the forwarded message below."
      ],
      "nullable": true,
      "description": "Optional additional text to include before the forwarded content."
    },
    "recipient_email": {
      "type": "string",
      "title": "Recipient Email",
      "examples": [
        "[email protected]"
      ],
      "description": "Email address to forward the message to."
    }
  }
}