Guide

Mail Manus: Automate Email from CLI

Mail Manus is useful for reactive forwarding workflows, but forwarding alone cannot search your inbox, send from your real mailbox, or use calendar context. This guide shows when Mail Manus is enough, when to add the Nylas CLI Skill, and how to run triage, summaries, and scheduled follow-ups without changing providers or aliases.

Written by Prem Keshari Senior SRE

Reviewed by Nick Barraclough

VerifiedCLI 3.1.1 · Gmail, Outlook · last tested April 11, 2026

What is Mail Manus?

Mail Manus is Manus AI's built-in email feature. You forward emails to a dedicated Manus address, and the agent analyzes the content, executes instructions, and sends results back. It works by setting up auto-forward filters in Gmail or Outlook so incoming messages reach the agent automatically.

That makes Mail Manus strongest for reactive workflows: forwarding a long thread for summarization, routing one invoice for extraction, or asking for a draft reply on a single support email. The tradeoff is architectural, not cosmetic. Forwarding means Manus sees only what you route to it, cannot look up related messages on its own, and cannot send from your real mailbox identity.

This page exists to answer one specific question: when should you keep the built-in Mail Manus forwarding flow, and when should you upgrade to direct inbox access with the Nylas CLI Skill? If you only need one-way reactive processing, forwarding is enough. If you need inbox search, provider switching, send actions, or calendar-aware follow-ups, direct access is the better fit.

Why add the Nylas CLI Skill?

Mail Manus relies on forwarding, which means Manus never gets a full mailbox view. The Nylas CLI Skill changes the model from forwarded-message intake to direct mailbox operations. Instead of waiting for a forwarded copy, Manus can search the live inbox, read the full thread, send from your own address, and use calendar context before it drafts a reply.

Key advantages over forwarding:

  • Multi-provider: access multiple mailboxes from one Skill
  • Proactive: Manus can search and triage without waiting for forwarded messages
  • Full actions: send, reply, smart-compose, and calendar operations — not just read
  • Structured output: --json flag gives Manus parseable data

Which model fits your workflow?

Choose Mail Manus forwarding when the mailbox itself is not the system of record. Examples: forward a single escalation email, summarize one negotiation thread, or extract one invoice attachment. Choose the Nylas CLI Skill when the inbox is the workflow system. Examples: triage unread mail every morning, check whether a customer already replied before drafting, send follow-ups from your real address, or schedule actions around tomorrow's calendar events.

That distinction matters for search too. Someone searching for "Mail Manus email automation" is often comparing forwarding with direct access, not looking for another generic agent primer. This guide is now intentionally framed around that comparison.

Quick setup

Three steps to give Manus direct inbox access:

  1. Add the Nylas CLI Skill to Manus — follow the Manus AI Skills guide to create or upload the Skill.
  2. Activate in chat — type /nylas-cli in the Manus chat input to load the Skill into the agent's context.
  3. Run setup — ask Manus to install and authenticate the CLI:
# Manus runs this in its sandbox
bash scripts/setup.sh

After setup, Manus can run any Nylas CLI command. Verify with:

nylas auth whoami

Workflow: auto-triage inbox

Ask Manus: "Triage my unread emails — categorize them as urgent, needs reply, or FYI."

Behind the scenes, Manus runs:

# Fetch unread messages
nylas email list --unread --limit 30 --json

The agent parses the JSON output, categorizes each message by sender, subject, and content, then presents a summary. For anything marked "needs reply," it can draft responses:

# Draft a reply using AI compose
nylas email smart-compose --prompt "Reply to Sarah: confirm the Q4 budget numbers will be ready by Friday"

Workflow: forward and summarize

You can combine Mail Manus forwarding with the CLI Skill. Forward a long email thread to Manus, then ask it to pull the full conversation for deeper analysis:

# Read the full message with headers and body
nylas email read MESSAGE_ID --json

Manus extracts key decisions, action items, and deadlines from the thread and returns a structured summary. This is more reliable than forwarding alone because the agent can access the complete message metadata.

Workflow: scheduled follow-ups

Ask Manus: "Check my calendar for tomorrow and draft pre-meeting emails for each event."

# List tomorrow's events
nylas calendar events list --days 1 --json

Manus reads the attendee list for each event, then drafts personalized pre-meeting emails:

# Draft a pre-meeting email
nylas email smart-compose --prompt "Remind Alex about tomorrow's 2pm design review. Ask if they have the mockups ready."

# Send after confirmation
nylas email send --to "alex@company.com" --subject "Design review tomorrow at 2pm" --body "..." --yes

Mail Manus vs Nylas CLI Skill

FeatureMail Manus (forwarding)Nylas CLI Skill (direct access)
Inbox accessForwarded messages onlyFull inbox search and read
ProvidersOne at a time (Gmail or Outlook)Gmail, Outlook, Yahoo, iCloud, Exchange, IMAP
TriggerReactive (email arrives)Proactive (agent searches on demand)
Send emailReply to Manus addressSend from your own address
CalendarNot availableFull calendar access
AI composeNot availablenylas email smart-compose
SetupAuto-forward filterSkill upload + bash scripts/setup.sh

The two approaches are complementary. Use Mail Manus for quick reactive processing of specific forwarded emails. Use the Nylas CLI Skill when you need full inbox access, multi-provider support, or proactive workflows.

FAQ

What is the difference between Mail Manus and the Nylas CLI Skill?

Mail Manus uses email forwarding — you route messages to a Manus address for processing. The Nylas CLI Skill gives Manus direct API access to your inbox. It can search, read, send, and compose across multiple email providers without forwarding.

Can I use both together?

Yes. Keep Mail Manus for reactive workflows (forwarding specific emails for quick analysis) and use the Nylas CLI Skill for proactive workflows (inbox triage, scheduled follow-ups, bulk searches).

Does the Nylas CLI Skill work with providers other than Gmail and Outlook?

Yes. The Nylas platform supports Gmail, Outlook, Microsoft 365, Exchange, Yahoo, iCloud, and any IMAP-compatible mailbox. Mail Manus forwarding is limited to whichever single provider you configure auto-forward rules in.

Next steps