Learn-skills.dev postmark
Use when working with Postmark email platform - routes to specific sub-skills for sending emails, processing inbound email, managing templates, or configuring webhooks.
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/activecampaign/postmark-skills/postmark" ~/.claude/skills/neversight-learn-skills-dev-postmark && rm -rf "$T"
manifest:
data/skills-md/activecampaign/postmark-skills/postmark/SKILL.mdsource content
Postmark Skills
Postmark is a transactional email platform built for developers, with 15+ years of deliverability expertise. These skills teach AI agents how to use the Postmark API effectively.
Sub-Skills
| Feature | Skill | Use When |
|---|---|---|
| Sending emails | | Sending transactional or broadcast emails — single, batch, bulk, or with templates |
| Inbound processing | | Processing incoming emails via webhooks, building reply-by-email, email-to-ticket, or document extraction |
| Template management | | Creating, editing, or sending with Postmark's server-side Handlebars templates and layouts |
| Webhooks | | Setting up webhooks for delivery, bounce, open, click, spam complaint, and subscription change events |
| Best practices | | Deliverability setup, compliance (CAN-SPAM/GDPR/CASL), email design, list management, testing, and sending reliability |
Quick Routing
- "Send an email" →
postmark-send-email - "Send a batch of emails" →
postmark-send-email - "Send using a template" →
(template section) orpostmark-send-email
(to create/manage templates)postmark-templates - "Handle incoming email" →
postmark-inbound - "Process inbound webhooks" →
postmark-inbound - "Create an email template" →
postmark-templates - "Track deliveries/bounces/opens" →
postmark-webhooks - "Set up bounce handling" →
postmark-webhooks - "Set up SPF/DKIM/DMARC" →
postmark-email-best-practices - "Email compliance / GDPR / CAN-SPAM" →
postmark-email-best-practices - "Domain warm-up" →
postmark-email-best-practices - "List hygiene / suppression management" →
postmark-email-best-practices - "Design a transactional email" →
postmark-email-best-practices - "Test email safely" →
postmark-email-best-practices
Common Setup
Authentication
Postmark uses two types of API tokens:
| Token | Header | Scope |
|---|---|---|
| Server Token | | Sending emails, templates, bounces, webhooks, message streams |
| Account Token | | Managing servers, domains, sender signatures |
Get your Server API Token from Postmark Servers.
SDK Installation
Detect the project language and install the appropriate SDK:
| File | Language | Install Command |
|---|---|---|
| Node.js / TypeScript | |
/ | Python | |
| Ruby | |
| PHP | |
/ | .NET | |
Message Streams
Postmark separates email by intent into Message Streams:
| Stream | Value | Purpose |
|---|---|---|
| Transactional | | 1:1 triggered emails (welcome, password reset, receipts) — default |
| Broadcast | | Marketing, newsletters, announcements |
Never mix transactional and broadcast email in the same stream — it damages deliverability.