Ping Identity

mail_reply

Reply to an existing email in a thread. Supports up to 10 attachments (10 MB each, 25 MB total).

Remote loomal/identity

Remote (network-hosted)

Other tools also called mail_reply? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "html": {
      "type": "string",
      "maxLength": 1000000,
      "description": "HTML reply body (optional)"
    },
    "text": {
      "type": "string",
      "maxLength": 1000000,
      "description": "Plain text reply body"
    },
    "messageId": {
      "type": "string",
      "maxLength": 500,
      "description": "The messageId of the email to reply to"
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "filename",
          "contentType",
          "data"
        ],
        "properties": {
          "data": {
            "type": "string",
            "minLength": 1,
            "description": "Base64-encoded file content (max 10 MB per file)"
          },
          "filename": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1
          },
          "contentType": {
            "type": "string",
            "maxLength": 200,
            "minLength": 1
          }
        }
      },
      "maxItems": 10,
      "description": "File attachments (max 10 per email, 10 MB each)"
    }
  }
}