Command
nylas email scheduled list
List emails scheduled for future delivery.
Written by Qasim Muhammad Staff SRE
What does nylas email scheduled list do?
The nylas email scheduled list command shows all emails queued for later delivery, including their scheduled send time and recipient. Use it to review or cancel pending scheduled messages.
Usage
nylas email scheduled list [--limit N] [--json]Flags
| Flag | Description |
|---|---|
| --json | Output as JSON |
| --no-color | Disable color output |
| --verbose(-v) | Enable verbose output |
| --config | Custom config file path |
| --help(-h) | Show help for the command |
| --limit | Maximum number of scheduled emails to return |
| --yes(-y) | Skip confirmations |
Examples
The nylas email scheduled list command shows all emails queued for later delivery, including their scheduled send time and recipient.
List all scheduled emails
nylas email scheduled listCancel a scheduled email
# First find the scheduled email ID
nylas email scheduled list --json | jq '.[0].id'
# Then delete it before it sends
nylas email delete msg_scheduled_abc123 --forceExample output
ID SUBJECT SEND AT
sched_abc123 Q3 planning 2026-06-22 09:00
sched_def456 Morning update 2026-06-23 08:00
2 scheduled messagesTroubleshooting
Scheduled email already sent even though send time hasn't passed
Scheduled send times are approximate. Messages may be sent a few minutes early depending on provider queue processing.
No scheduled emails returned
Only emails scheduled via the CLI or Nylas API appear here. Emails scheduled through Gmail or Outlook's built-in scheduler are not tracked.
Recommended guides
List Fastmail emails from the CLI
List Fastmail emails from the CLI through Nylas IMAP access, using app passwords, inbox filters, JSON output, and Fastmail-specific auth troubleshooting.
Why Cloud Servers Block SMTP Ports
AWS, GCP, and Azure block outbound SMTP port 25 while ports 587 and 465 stay open. Confirm the block and send email over an HTTPS API instead.
Send Email From a Docker Container
Cloud providers block SMTP port 25 from containers. Send email over an HTTPS API on port 443 with one command and no mail daemon at all.
MailerSend vs Nylas: Email Compared
MailerSend sends transactional email from verified domains. Nylas reads and syncs user inboxes across 6 providers. Compare features, pricing, and use cases.
Customer.io vs Nylas: Email Compared
Customer.io sends lifecycle emails to your user base. Nylas reads and sends from real user inboxes via OAuth. Compare use cases, pricing, and AI agent support.
Knock vs Nylas: Notifications vs Email API
Knock delivers multi-channel product notifications via workflows; Nylas provides two-way email and calendar sync. Compare scope, pricing, and agent support.
Run nylas email scheduled list --help for full help output.