Fluxmail

Forward email

Forward an email to new recipients: quoted original body, "Fwd:" subject, original attachments included unless includeAttachments=false. Optional comment appears above the forwarded content.

forward_email

Forward an email to new recipients: quoted original body, "Fwd:" subject, original attachments included unless includeAttachments=false. Optional comment appears above the forwarded content.

Permissions

Required capabilities: mail.read + mail.send.

Inputs

NameRequiredTypeDetails
accountIdNostringAccount to operate on. Optional when exactly one account is connected. Minimum length: 1.
messageIdYesstringMinimum length: 1.
toYesarray of stringRecipients, each "Name a@x.com" or "a@x.com"
ccNoarray of stringRecipients, each "Name a@x.com" or "a@x.com"
commentNostringNone
includeAttachmentsNobooleanDefault true
{
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string",
      "minLength": 1,
      "description": "Account to operate on. Optional when exactly one account is connected."
    },
    "messageId": {
      "type": "string",
      "minLength": 1
    },
    "to": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "minItems": 1,
      "description": "Recipients, each \"Name <a@x.com>\" or \"a@x.com\""
    },
    "cc": {
      "type": "array",
      "items": {
        "$ref": "#/properties/to/items"
      },
      "description": "Recipients, each \"Name <a@x.com>\" or \"a@x.com\""
    },
    "comment": {
      "type": "string"
    },
    "includeAttachments": {
      "type": "boolean",
      "description": "Default true"
    }
  },
  "required": [
    "messageId",
    "to"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Last updated

On this page