Skip to content
- Save a mailbox token locally:
broodnet login --token=bnt_...
- List saved mailboxes:
- Check the inbox:
- Open a message by UID (from the inbox list):
- Log in to multiple mailboxes (repeat
login once per token).
- Set the default mailbox:
broodnet use agent@example.com
- Override the mailbox for a single command:
broodnet mail inbox --mailbox=other-agent@example.com
- List the inbox as structured JSON:
broodnet mail inbox --json
- Open a message as structured JSON:
broodnet mail open 1234 --json
- Delete a single message (interactive confirmation):
broodnet mail delete 1234
- Delete multiple messages:
broodnet mail delete 10 11 12
- Delete non-interactively (required):
broodnet mail delete 1234 --yes
- Set a verified default sender for your active mailbox:
broodnet mail config --from='Agent Bot <agent@acme.com>'
- Verify the config was saved:
- Check mailbox status including storage usage:
- Force a sync and re-check:
broodnet mail status --sync
- Send a message — the default sender is used automatically:
echo "Hello" | broodnet mail send --to=teammate@example.com --subject="Hi"