Google Super

GOOGLESUPER_CREATE_EMAIL_DRAFT

Creates a Gmail email draft, requiring at least one of recipient_email, cc, or bcc must be provided. Atleast one of subject or body must be provided. Supports To/Cc/Bcc, subject, plain/HTML body (ensure `is_html=True` for HTML), attachments, and threading. When creating a draft reply to an existing thread (thread_id provided), leave subject empty to stay in the same thread; setting a subject will create a NEW thread instead.

Remote googlesuper

Other tools also called GOOGLESUPER_CREATE_EMAIL_DRAFT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "cc": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Cc",
      "default": [],
      "examples": [
        [
          "[email protected]",
          "[email protected]"
        ]
      ],
      "description": "Carbon Copy (CC) recipients' email addresses. Atleast one of cc, bcc, or recipient_email must be provided."
    },
    "bcc": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Bcc",
      "default": [],
      "examples": [
        [
          "[email protected]"
        ]
      ],
      "description": "Blind Carbon Copy (BCC) recipients' email addresses. Atleast one of cc, bcc, or recipient_email must be provided."
    },
    "body": {
      "type": "string",
      "title": "Body",
      "default": null,
      "examples": [
        "Hello Team,\n\nPlease find the attached report for your review.\n\nBest regards,\nYour Name",
        "<h1>Meeting Confirmation</h1><p>This email confirms our meeting scheduled for next Tuesday.</p>"
      ],
      "nullable": true,
      "description": "Email body content (plain text or HTML); `is_html` must be True if HTML. Either subject or body must be provided."
    },
    "is_html": {
      "type": "boolean",
      "title": "Is Html",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "Set to True if `body` is HTML, otherwise the action may fail."
    },
    "subject": {
      "type": "string",
      "title": "Subject",
      "default": null,
      "examples": [
        "Project Update Q3",
        "Meeting Reminder"
      ],
      "nullable": true,
      "description": "Email subject line. Either subject or body must be provided. When creating a draft reply to an existing thread (thread_id provided), leave this empty to stay in the same thread. Setting a subject will create a NEW thread instead."
    },
    "user_id": {
      "type": "string",
      "title": "User Id",
      "default": "me",
      "examples": [
        "me",
        "[email protected]"
      ],
      "description": "User's email address or 'me' for the authenticated user."
    },
    "thread_id": {
      "type": "string",
      "title": "Thread Id",
      "default": null,
      "examples": [
        "17f45ec49a9c3f1b"
      ],
      "nullable": true,
      "description": "ID of an existing Gmail thread to reply to; omit for new thread."
    },
    "attachment": {
      "type": "string",
      "title": "FileUploadable",
      "format": "path",
      "description": "File to attach to the email.",
      "file_uploadable": true
    },
    "recipient_email": {
      "type": "string",
      "title": "Recipient Email",
      "default": null,
      "examples": [
        "[email protected]"
      ],
      "nullable": true,
      "description": "Primary recipient's email address. Required if cc and bcc is not provided, else can be optional. Use extra_recipients if you want to send to multiple recipients."
    },
    "extra_recipients": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Extra Recipients",
      "default": [],
      "examples": [
        [
          "[email protected]",
          "[email protected]"
        ]
      ],
      "description": "Additional 'To' recipients' email addresses (not Cc or Bcc). Should only be used if recipient_email is also provided."
    }
  }
}