PinMe Email API Integration
Guides Claude to write correct Worker TypeScript code for PinMe's send_email platform API.
Web & APIIntermediate★ 3,737⑂ 272AI score 8/10Last updated: Jul 25, 2026
What it does
Helps you wire email sending into a PinMe project's Worker (TypeScript) backend.
- Full spec for
POST {BASE_URL}/api/v4/send_emailwith requiredto,subject,htmlfields - Auth via the
X-API-Keyheader usingenv.API_KEY(env vars auto-injected at Worker creation) - Sender is automatically
{project_name}@pinme.cloud - 401/400/500 error table plus the unified
{ code, msg, data }response contract - Reusable
sendEmail()helper and a genericcallPinmeAPI()error handler
Who it's for
- Developers shipping backend Workers on the PinMe platform
- Anyone adding verification-code or transactional email quickly
- Teams that want one consistent error-handling pattern for PinMe APIs
Examples
- "Add a route that emails a 6-digit verification code on signup" → generates a
handleSendVerificationhandler - "Send an HTML order-confirmation email" → uses the
sendEmail()helper - "Refactor my PinMe API calls into one shared function" → applies the
callPinmeAPI<T>()pattern
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/glitternetwork/pinme/HEAD/skills/pinme-email/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/pinme-email folder from the GitHub repo glitternetwork/pinme into my ~/.claude/skills/pinme-email/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/glitternetwork/pinme.git && mkdir -p ~/.claude/skills && cp -r pinme/skills/pinme-email ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/glitternetwork/pinme.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r pinme/skills/pinme-email ~/.claude/skills/ - Restart Claude Code and confirm
pinme-emailappears under/skills. - Inside a PinMe Worker project, ask for "email sending integration" to trigger the skill.
View source on GitHub ↗License: MIT