AgentStack
SKILL verified MIT Self-run

Email

skill-ericwang915-pythonclaw-email · by ericwang915

>

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-ericwang915-pythonclaw-email

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Email? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Email (SMTP)

When to Use

  • [ ] Send emails through SMTP (Gmail, Outlook, custom server)
  • [ ] Notifications, messages, or reports
  • [ ] Emails with CC, BCC, or HTML body
  • [ ] When user explicitly asks to "send an email"

When NOT to Use

  • [ ] Reading or searching Gmail — use google_workspace with gog
  • [ ] Sending via Gmail API — use google_workspace gmail send
  • [ ] Tasks that don't involve sending email

Setup

Configure in pythonclaw.json (or the Config dashboard):

"skills": {
  "email": {
    "smtpServer": "smtp.gmail.com",
    "smtpPort": 587,
    "senderEmail": "you@gmail.com",
    "senderPassword": "your-app-password"
  }
}

For Gmail, use an App Password.

Usage/Commands

python {skill_path}/send_email.py \
  --to "recipient@example.com" \
  --subject "Hello" \
  --body "Message body here"

| Option | Description | |--------|-------------| | --to | Recipient address (required) | | --subject | Subject line | | --body | Message body | | --cc "a@b.com,c@d.com" | CC recipients | | --bcc "x@y.com" | BCC recipients | | --html | Treat body as HTML |

Notes

  • Always confirm before sending on behalf of the user
  • For Gmail, App Password is required (not regular password)
  • Credentials are read from skills.email in pythonclaw.json

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.