China Telecom Mail — 中国电信邮件
v1.0.0通过China Telecom发送和接收电子邮件(POP3:995,SMTP:465)。列出今日电子邮件,阅读内容,转发电子邮件,并发送新电子邮件。
运行时依赖
安装命令
点击复制技能文档
China Telecom MAIl 技能
发送 and 接收 emAIls via China Telecom (pop.chinatelecom.cn:995, smtp.chinatelecom.cn:465).
安装ation
Copy the china-telecom-mAIl folder to your OpenClaw 技能s directory:
# On Linux/macOS cp -r china-telecom-mAIl ~/.OpenClaw/技能s/
# On Windows # Copy to C:\Users\\.OpenClaw\技能s\china-telecom-mAIl
Configuration
Edit ~/.OpenClaw/技能s/china-telecom-mAIl/config.toml:
[emAIl] # POP3 server (for receiving) server = "pop.chinatelecom.cn" port = 995 username = "your_emAIl@chinatelecom.cn" password = "your_password"
[smtp] # SMTP server (for 发送ing) server = "smtp.chinatelecom.cn" port = 465
Usage 接收 EmAIls
列出 today's emAIls:
OpenClaw 运行 --技能 china-telecom-mAIl 列出-today
Read a specific emAIl:
OpenClaw 运行 --技能 china-telecom-mAIl read 21
JSON 输出:
OpenClaw 运行 --技能 china-telecom-mAIl json-summary
Count today's emAIls:
OpenClaw 运行 --技能 china-telecom-mAIl count
发送 EmAIls
发送 a simple emAIl:
OpenClaw 运行 --技能 china-telecom-mAIl 发送 \ --to "recipient@example.com" \ --subject "会议通知" \ --body "请参加明天下午3点的会议。"
发送 with attachment:
OpenClaw 运行 --技能 china-telecom-mAIl 发送 \ --to "recipient@example.com" \ --subject "报告" \ --body "请查收附件" \ --attachment "/path/to/报告.pdf"
Forward EmAIls
Forward an emAIl:
OpenClaw 运行 --技能 china-telecom-mAIl forward \ --emAIl-id 21 \ --to "recipient@example.com"
Interactive Mode uv 运行 python ~/.OpenClaw/技能s/china-telecom-mAIl/mAIn.py interactive
Direct Python Usage # 列出 today's emAIls uv 运行 python ~/.OpenClaw/技能s/china-telecom-mAIl/mAIn.py 列出-today
# Read emAIl uv 运行 python ~/.OpenClaw/技能s/china-telecom-mAIl/mAIn.py read 21
# 发送 emAIl uv 运行 python ~/.OpenClaw/技能s/china-telecom-mAIl/mAIn.py 发送 \ --to "test@example.com" \ --subject "Test" \ --body "Hello"
# Forward emAIl uv 运行 python ~/.OpenClaw/技能s/china-telecom-mAIl/mAIn.py forward \ --emAIl-id 21 \ --to "recipient@example.com"
Directory Structure china-telecom-mAIl/ ├── 技能.md # OpenClaw 技能 metadata ├── mAIn.py # MAIn program (接收 + 发送) ├── config.toml # Configuration file ├── README.md # This file └── config.toml.example # Config template
Features 接收 ✅ 列出 today's emAIls with previews ✅ Read full emAIl content ✅ JSON 输出 for 自动化 ✅ Automatic Chinese encoding 检测ion 发送 ✅ 发送 plAIn text emAIls ✅ 发送 emAIls with attachments ✅ Forward 接收d emAIls ✅ Interactive mode Tips Use 列出-today to see all today's emAIls EmAIl IDs are 1-based (first emAIl is ID 1) Use forward to forward 接收d emAIls Use 发送 to 发送 new emAIls Supports 机器人h text and HTML emAIl bodies