Gog
一个面向 Dev Tools 场景的 Agent 技能。原始说明:Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
name: 163email-skill
description: "163email skill - Send emails via 163 SMTP service with custom recipient, subject, content. Support CLI and Python import"
version: 1.2.0
author: geekbin
license: MIT
tags:
metadata:
openclaw:
requires:
env:
bins:
install: []
Send emails via 163 SMTP service. Support custom recipient, subject, content. Both CLI and Python module import calling methods are supported.
python send_email.py "recipient@example.com" "Test Subject" "Email content here"
from src.send_email import send_mail
send_mail(
to="recipient@example.com",
subject="Test Email",
content="This is the email content"
)
Set environment variables before use:
export CLAW_EMAIL="your_163_email@163.com"
export CLAW_EMAIL_AUTH="your_smtp_authorization_code"
export CLAW_SMTP_SERVER="smtp.163.com" # optional
export CLAW_SMTP_PORT="465" # optional
Or use in Python:
import os
os.environ["CLAW_EMAIL"] = "your_email@163.com"
os.environ["CLAW_EMAIL_AUTH"] = "your_auth_code"
MIT