Install
openclaw skills install email-imap-smtpConnect to mainstream email providers and perform reliable send/receive workflows through IMAP and SMTP with password or OAuth2 authentication. Use when a us...
openclaw skills install email-imap-smtpUse this skill to automate email operations with standard IMAP/SMTP protocols using local scripts.
password or oauth2).Use references/provider-presets.md for common provider host/port defaults.
Run:
python scripts/email_ops.py --help
Subcommands:
check: Verify IMAP/SMTP login connectivity.list: List recent/unread email summaries.read: Read one email by UID.send: Send an email with optional HTML and attachments.token: Resolve OAuth2 access token (masked output by default).auth-url: Build OAuth2 browser login URL for authorization code flow.Check mailbox connectivity:
python scripts/email_ops.py check --provider qq --email you@qq.com
Check connectivity with OAuth2 (Gmail):
python scripts/email_ops.py check --provider gmail --email you@gmail.com --auth-mode oauth2 --access-token "<ACCESS_TOKEN>"
List unread emails:
python scripts/email_ops.py list --provider qq --email you@qq.com --unseen --limit 20
Read one email:
python scripts/email_ops.py read --provider qq --email you@qq.com --uid 12345
Send email:
python scripts/email_ops.py send --provider qq --email you@qq.com --to friend@example.com --subject "Test" --body "Hello from Codex"
Resolve a new OAuth2 token from refresh token:
python scripts/email_ops.py token --provider outlook --email you@outlook.com --auth-mode oauth2 --refresh-token "<REFRESH_TOKEN>" --client-id "<CLIENT_ID>" --client-secret "<CLIENT_SECRET>"
Build OAuth2 authorization URL (Gmail example):
python scripts/email_ops.py --provider gmail --client-id "<CLIENT_ID>" --redirect-uri "http://localhost:8080/callback" auth-url
EMAIL_ADDRESS: Login email address.EMAIL_PROVIDER: Provider preset key (for example qq, gmail, outlook, yahoo, aol, zoho, icloud).EMAIL_AUTH_MODE: auto/password/oauth2.EMAIL_APP_PASSWORD or EMAIL_PASSWORD: Password mode credential.EMAIL_ACCESS_TOKEN: OAuth2 access token.EMAIL_REFRESH_TOKEN: OAuth2 refresh token.EMAIL_TOKEN_ENDPOINT: OAuth2 token endpoint.EMAIL_AUTH_ENDPOINT: OAuth2 authorization endpoint.EMAIL_CLIENT_ID: OAuth2 client id.EMAIL_CLIENT_SECRET: OAuth2 client secret.EMAIL_REDIRECT_URI: OAuth2 redirect URI for auth-url.EMAIL_SCOPE: Optional scope for refresh request.EMAIL_IMAP_HOST, EMAIL_IMAP_PORT: Override IMAP endpoint.EMAIL_SMTP_HOST, EMAIL_SMTP_PORT: Override SMTP endpoint.EMAIL_SMTP_SSL: true/false, default from provider preset.--mailbox) or remove filters.