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]| Flag | Type | Default | Description |
|---|---|---|---|
--limit | integer | 20 | Messages per page |
--page | integer | 1 | Page 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 963914Returns 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 statsOutput
{
"total": 963,
"unread": 903,
"sent": 11,
"withAttachments": 1
}