Install
$ agentstack add skill-citedy-adclaw-email ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Send Email — Skill Instructions
Overview
Send emails directly from your agent — reports, notifications, summaries, alerts. Works with Unosend (5,000 free emails/month) or any SMTP provider.
Use cases:
- "Send the SEO report to team@company.com"
- "Email this summary to the client"
- "Notify marketing@company.com about the new trends"
- "Send a weekly digest to the team"
When to Use
| Situation | What to do | |-----------|------------| | User asks to send/email something | Use send_email tool | | User wants to notify someone | Compose message + send_email | | User asks to share a report via email | Generate HTML report + send_email |
Setup
Option A: Unosend (recommended, free tier)
- Sign up at unosend.com
- Add and verify your sending domain
- Get your API key (starts with
un_) - Set environment variables:
UNOSEND_API_KEY=un_your_keySMTP_FROM=noreply@yourdomain.com
5,000 emails/month free, no credit card needed.
Option B: Custom SMTP
Set these environment variables:
SMTP_HOST=smtp.yourprovider.com
SMTP_PORT=587
SMTP_USER=your_username
SMTP_PASSWORD=your_password
SMTP_FROM=noreply@yourdomain.com
Tool Reference
send_email
send_email(
to="recipient@example.com",
subject="Weekly SEO Report",
body="ReportYour rankings improved 15%...",
html=True
)
Parameters:
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | to | string | yes | Recipient email (comma-separated for multiple) | | subject | string | yes | Email subject line | | body | string | yes | Email content (HTML or plain text) | | html | bool | no | Treat body as HTML (default: true) | | from_email | string | no | Sender email (default: from env) | | from_name | string | no | Sender display name (default: AdClaw) |
Response Guidelines
When sending emails:
- Confirm before sending — always tell the user what you're about to send and to whom
- Use HTML for rich content — tables, bold, headers make emails professional
- Keep subject lines clear — "Weekly SEO Report — March 15" not "Report"
- Report success — tell the user the email was sent with recipient and subject
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: citedy
- Source: citedy/adclaw
- License: Apache-2.0
- Homepage: https://pypi.org/project/adclaw/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.