Ping Identity

mail_send

Send an email from your agent's inbox. Supports up to 10 attachments (10 MB each, 25 MB total).

Remote loomal/identity

Remote (network-hosted)

Other tools also called mail_send? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "cc": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 320
      },
      "maxItems": 50,
      "description": "Carbon copy recipient email addresses"
    },
    "to": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 320
      },
      "maxItems": 50,
      "description": "Recipient email addresses"
    },
    "bcc": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 320
      },
      "maxItems": 50,
      "description": "Blind carbon copy recipient email addresses"
    },
    "html": {
      "type": "string",
      "maxLength": 1000000,
      "description": "Optional HTML body for rich formatting"
    },
    "text": {
      "type": "string",
      "maxLength": 1000000,
      "description": "Plain text body of the email"
    },
    "subject": {
      "type": "string",
      "maxLength": 1000,
      "description": "Email subject line"
    },
    "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)"
    }
  }
}