📧 WeCom Email - 企业微信邮箱
name: wecom-email
by chongjie-ran · published 2026-04-01
$ claw add gh:chongjie-ran/chongjie-ran-wecom-email---
name: wecom-email
version: 1.0.0
description: >
企业微信邮箱操作 - 使用专用邮箱发送邮件。
支持读取会议纪要、业务文档等作为邮件内容发送。
author: SC
keywords: [email, mail, smtp, wecom, notification]
metadata:
openclaw:
emoji: "📧"
category: productivity
---
# 📧 WeCom Email - 企业微信邮箱
使用专用邮箱发送工作邮件。
快速开始
1. 配置 SMTP
| 配置项 | 值 |
|--------|-----|
| SMTP服务器 | smtp.exmail.qq.com |
| SMTP端口 | 465 (SSL) |
| 邮箱账号 | YOUR_EMAIL@YOUR_DOMAIN.COM |
| 凭证文件 | ~/.openclaw/workspace/memory/sc-email-credentials.enc |
2. 发送邮件
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
SMTP_SERVER = "smtp.exmail.qq.com"
SMTP_USER = "YOUR_EMAIL@YOUR_DOMAIN.COM"
SMTP_PASSWORD = "YOUR_PASSWORD"
msg = MIMEMultipart()
msg['From'] = SMTP_USER
msg['To'] = "recipient@example.com"
msg['Subject'] = "邮件主题"
msg.attach(MIMEText("邮件内容", 'plain', 'utf-8'))
server = smtplib.SMTP_SSL('smtp.exmail.qq.com', 465)
server.login(SMTP_USER, SMTP_PASSWORD)
server.sendmail(SMTP_USER, ["recipient@example.com"], msg.as_string())
server.quit()安全规则
发送条件
禁止发送
账号权限
使用示例
发送会议纪要
# 读取会议纪要文件
with open("meeting-minutes.md", 'r') as f:
content = f.read()
# 发送邮件
send_email(
to=["colleague@example.com"],
subject="会议纪要 - 日期",
body=content
)命令行发送
# 直接使用Python脚本发送
python3 scripts/send-email.py --to "xxx@example.com" --subject "主题" --body "内容"凭证管理
相关文件
---
触发词
当用户提到以下内容时激活此Skill:
More tools from the same signal band
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
Sign plugins, rotate agent credentials without losing identity, and publicly attest to plugin behavior with verifiable claims and authenticated transfers.
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your...