Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

PinMe Email API Integration

Guides Claude to write correct Worker TypeScript code for PinMe's send_email platform API.

Web & APIIntermediate3,737272AI 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_email with required to, subject, html fields
  • Auth via the X-API-Key header using env.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 generic callPinmeAPI() 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

  1. "Add a route that emails a 6-digit verification code on signup" → generates a handleSendVerification handler
  2. "Send an HTML order-confirmation email" → uses the sendEmail() helper
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/glitternetwork/pinme.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r pinme/skills/pinme-email ~/.claude/skills/
  5. Restart Claude Code and confirm pinme-email appears under /skills.
  6. Inside a PinMe Worker project, ask for "email sending integration" to trigger the skill.