Install
openclaw skills install qqmailManage QQ Mail (QQ邮箱) via IMAP/SMTP. Use when the user wants to read, send, search, or manage emails from their QQ mailbox. Supports reading inbox, sending emails with attachments, searching by subject/sender/date, and listing folders.
openclaw skills install qqmailManage QQ邮箱 via standard IMAP/SMTP protocols using Python scripts.
The user must enable IMAP/SMTP in QQ Mail settings and obtain an authorization code (授权码):
The skill reads credentials from environment variables:
QQMAIL_USER — QQ email address (e.g. 123456789@qq.com)QQMAIL_AUTH_CODE — Authorization code from QQ Mail settings (授权码)python3 {baseDir}/scripts/qqmail.py inbox --limit 10
Shows: sender, subject, date, and a text preview of each email.
python3 {baseDir}/scripts/qqmail.py read --index 1
Shows the full email content (text body).
python3 {baseDir}/scripts/qqmail.py send --to "recipient@example.com" --subject "Hello" --body "Email content here"
python3 {baseDir}/scripts/qqmail.py send --to "recipient@example.com" --subject "Report" --body "See attached" --attachment "/path/to/file.pdf"
python3 {baseDir}/scripts/qqmail.py search --subject "keyword"
python3 {baseDir}/scripts/qqmail.py search --from "sender@example.com"
python3 {baseDir}/scripts/qqmail.py search --since "2026-01-01"
python3 {baseDir}/scripts/qqmail.py search --subject "meeting" --since "2026-02-01" --limit 5
python3 {baseDir}/scripts/qqmail.py folders
python3 {baseDir}/scripts/qqmail.py inbox --folder "Sent Messages" --limit 5
imap.qq.com:993 (SSL)smtp.qq.com:465 (SSL)