China Telecom Mail
/install china-telecom-mail
China Telecom Mail Skill
Send and receive emails via China Telecom (pop.chinatelecom.cn:995, smtp.chinatelecom.cn:465).
Installation
Copy the china-telecom-mail folder to your OpenClaw skills directory:
# On Linux/macOS
cp -r china-telecom-mail ~/.openclaw/skills/
# On Windows
# Copy to C:\Users\\x3Cyourusername>\.openclaw\skills\china-telecom-mail
Configuration
Edit ~/.openclaw/skills/china-telecom-mail/config.toml:
[email]
# POP3 server (for receiving)
server = "pop.chinatelecom.cn"
port = 995
username = "[email protected]"
password = "your_password"
[smtp]
# SMTP server (for sending)
server = "smtp.chinatelecom.cn"
port = 465
Usage
Receive Emails
List today's emails:
openclaw run --skill china-telecom-mail list-today
Read a specific email:
openclaw run --skill china-telecom-mail read 21
JSON output:
openclaw run --skill china-telecom-mail json-summary
Count today's emails:
openclaw run --skill china-telecom-mail count
Send Emails
Send a simple email:
openclaw run --skill china-telecom-mail send \
--to "[email protected]" \
--subject "会议通知" \
--body "请参加明天下午3点的会议。"
Send with attachment:
openclaw run --skill china-telecom-mail send \
--to "[email protected]" \
--subject "报告" \
--body "请查收附件" \
--attachment "/path/to/report.pdf"
Forward Emails
Forward an email:
openclaw run --skill china-telecom-mail forward \
--email-id 21 \
--to "[email protected]"
Interactive Mode
uv run python ~/.openclaw/skills/china-telecom-mail/main.py interactive
Direct Python Usage
# List today's emails
uv run python ~/.openclaw/skills/china-telecom-mail/main.py list-today
# Read email
uv run python ~/.openclaw/skills/china-telecom-mail/main.py read 21
# Send email
uv run python ~/.openclaw/skills/china-telecom-mail/main.py send \
--to "[email protected]" \
--subject "Test" \
--body "Hello"
# Forward email
uv run python ~/.openclaw/skills/china-telecom-mail/main.py forward \
--email-id 21 \
--to "[email protected]"
Directory Structure
china-telecom-mail/
├── SKILL.md # OpenClaw skill metadata
├── main.py # Main program (receive + send)
├── config.toml # Configuration file
├── README.md # This file
└── config.toml.example # Config template
Features
Receive
- ✅ List today's emails with previews
- ✅ Read full email content
- ✅ JSON output for automation
- ✅ Automatic Chinese encoding detection
Send
- ✅ Send plain text emails
- ✅ Send emails with attachments
- ✅ Forward received emails
- ✅ Interactive mode
Tips
- Use
list-todayto see all today's emails - Email IDs are 1-based (first email is ID 1)
- Use
forwardto forward received emails - Use
sendto send new emails - Supports both text and HTML email bodies
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install china-telecom-mail - 安装完成后,直接呼叫该 Skill 的名称或使用
/china-telecom-mail触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
China Telecom Mail 是什么?
Send and receive emails via China Telecom (POP3:995, SMTP:465). Lists today's emails, reads content, forwards emails, and sends new emails. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 109 次。
如何安装 China Telecom Mail?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install china-telecom-mail」即可一键安装,无需额外配置。
China Telecom Mail 是免费的吗?
是的,China Telecom Mail 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
China Telecom Mail 支持哪些平台?
China Telecom Mail 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 China Telecom Mail?
由 Williamwang-wh(@williamwang-wh)开发并维护,当前版本 v1.0.0。