postmark-templates

postmark-templates is a skill for Claude Code, Codex from ActiveCampaign/postmark-skills. It costs 37 tokens per session (1,337 once invoked), scanned A, original, MIT.

A guide for Postmark’s server-side email templates, which use Handlebars placeholders and are rendered by Postmark before sending.

In plain words
What is it for?
Use it to build or manage reusable email templates, test their rendered output, send messages with template data, and promote templates from staging to production.
Why use it?
It explains how to create, validate, inherit, send, and move templates between Postmark servers without client-side rendering code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build or manage reusable email templates, test their rendered output, send messages with template data, and promote templates from staging to production.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/activecampaign/postmark-skills/postmark-templates
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ActiveCampaign/postmark-skills --skill postmark-templates
Clone the repo
git clone --depth 1 https://github.com/ActiveCampaign/postmark-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for postmark-templates

README.md
[![agentmods](https://agentmods.dev/badge/skills/activecampaign/postmark-skills/postmark-templates/github.svg)](https://agentmods.dev/skills/activecampaign/postmark-skills/postmark-templates)
Your own site
<a href="https://agentmods.dev/skills/activecampaign/postmark-skills/postmark-templates"><img src="https://agentmods.dev/badge/skills/activecampaign/postmark-skills/postmark-templates/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for postmark-templates

Your own site · 80×15
<a href="https://agentmods.dev/skills/activecampaign/postmark-skills/postmark-templates"><img src="https://agentmods.dev/badge/skills/activecampaign/postmark-skills/postmark-templates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,337 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01337
Opus 5 $0.00018 $0.00668
Sonnet 5 $0.00007 $0.00267
Haiku 4.5 $0.00004 $0.00134

Measured 9d ago against content hash cc0624a1f4a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

postmark-templates scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

postmark-templates/SKILL.md · 138 lines

How it starts

The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Email Templates with Postmark

Overview

Postmark templates are server-side email templates using Handlebars syntax. Templates are rendered on Postmark's servers — no client-side rendering library needed.

Feature Description
Syntax Handlebars (Mustache-compatible)
Rendering Server-side — no React, no client library
Types Standard templates and Layout templates
Inheritance Standard templates can inherit from a Layout
Validation API endpoint to test-render templates before sending
Cross-server Push templates between servers (staging → production)
Limit 100 templates per server (contact support for more)

Quick Start

  1. Create a template via API or the Postmark dashboard
  2. Define variables using Handlebars syntax: {{variable_name}}
  3. Send with template using POST /email/withTemplate or POST /email/batchWithTemplates
  4. Pass data via TemplateModel — Postmark renders and sends

Template Syntax (Handlebars)

Hello {{name}},                            {{! variable }}
{{{html_content}}}                         {{! unescaped HTML }}
{{#if premium}}Premium member{{/if}}       {{! conditional }}
{{#each items}}{{this.name}}{{/each}}      {{! iteration }}
{{customer.address.city}}                  {{! nested object }}

See references/handlebars-syntax.md for the full syntax reference including conditionals, iteration with index, nested objects, and common mistakes.

Template Types

Type TemplateType Sendable Purpose
Standard "Standard" Yes Defines subject, HTML, and text body
Layout "Layout" No Reusable wrapper injected via {{{@content}}}

Standard templates can reference a Layout via LayoutTemplate: "layout-alias". The Standard template's body replaces {{{@content}}} in the Layout at send time.

Read the full file on GitHub · 138 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 138 lines · 37 tokens per session scan A cc0624a1f4a0

Subscribe to this mod's changes

postmark-templates is a skill published in the GitHub repository ActiveCampaign/postmark-skills (45 stars, last pushed 21d ago), licensed MIT. It adds 37 tokens to every session and 1,337 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

architecture-patterns

Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing applications for better maintainability.

foryourhealth111-pixel/Vibe-Skills · 40 tokens

agent-communication-protocol

Open protocol for AI agent interoperability enabling standardized communication between agents, applications, and humans across different frameworks.

majiayu000/claude-skill-registry · 25 tokens

design-code-architecture

Guided journey from an app idea to a deliberate architecture: boundaries, domain model, data decisions, and resilience, making only the expensive-to-reverse decisions and deferring the rest. Orchestrates eight skills phase by phase - clean-architecture, domain-driven-design, system-design, ddia-systems…

wondelai/skills · 220 tokens

endpoint-validator

Deterministic API endpoint validation with pass/fail reporting.

notque/vexjoy-agent · 15 tokens

measure-instrumentation-spec

Specifies what analytics events to track, when they fire, and what properties to include, as a contract between product and engineering that prevents undertracked features. Use before engineering builds a feature or when auditing existing tracking for gaps. For the dashboard built on top of these events, use…

product-on-purpose/pm-skills · 69 tokens

api-patterns

API design: naming, versioning, pagination, idempotency, OpenAPI, error contracts and safe retries. Triggers: API design, REST, GraphQL, OpenAPI, Swagger, error response, HTTP status, rate limit.

softspark/ai-toolkit · 52 tokens