Hermes Docs
CLI Reference

inbox

Manage your unified inbox

hermes inbox

Read and manage messages across all your mailboxes.

List Messages

hermes inbox list [--limit N] [--page N]
FlagTypeDefaultDescription
--limitinteger20Messages per page
--pageinteger1Page number

Output

{
  "items": [
    {
      "id": 963914,
      "from": "contact@company.com",
      "to": "john@outreach-company.com",
      "subject": "Re: Quick question",
      "snippet": "Thanks for reaching out...",
      "is_read": false,
      "direction": "inbound"
    }
  ],
  "pagination": {
    "total": 963,
    "totalPages": 49
  }
}

Read Message

hermes inbox read --id 963914

Returns the full message body and metadata.

Reply to Message

hermes inbox reply --id 963914 --body "Thanks for getting back to me..."

Inbox Statistics

hermes inbox stats

Output

{
  "total": 963,
  "unread": 903,
  "sent": 11,
  "withAttachments": 1
}

On this page