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

FlagDescription
--jsonOutput as JSON
--no-colorDisable color output
--verbose(-v)Enable verbose output
--configCustom config file path
--help(-h)Show help for the command
--limitMaximum 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 list

Cancel 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 --force

Example 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 messages

Troubleshooting

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

Run nylas email scheduled list --help for full help output.