postmark
Use when working with Postmark email platform - routes to specific sub-skills for sending emails, processing inbound email, managing templates, or configuring webhooks.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o postmark.zip https://jpskill.com/download/9286.zip && unzip -o postmark.zip && rm postmark.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9286.zip -OutFile "$d\postmark.zip"; Expand-Archive "$d\postmark.zip" -DestinationPath $d -Force; ri "$d\postmark.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
postmark.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
postmarkフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
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 | postmark-send-email |
Sending transactional or broadcast emails — single, batch, bulk, or with templates |
| Inbound processing | postmark-inbound |
Processing incoming emails via webhooks, building reply-by-email, email-to-ticket, or document extraction |
| Template management | postmark-templates |
Creating, editing, or sending with Postmark's server-side Handlebars templates and layouts |
| Webhooks | postmark-webhooks |
Setting up webhooks for delivery, bounce, open, click, spam complaint, and subscription change events |
| Best practices | postmark-email-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" →
postmark-send-email(template section) orpostmark-templates(to create/manage 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 | X-Postmark-Server-Token |
Sending emails, templates, bounces, webhooks, message streams |
| Account Token | X-Postmark-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 |
|---|---|---|
package.json |
Node.js / TypeScript | npm install postmark |
requirements.txt / pyproject.toml |
Python | pip install postmarker |
Gemfile |
Ruby | gem install postmark |
composer.json |
PHP | composer require wildbit/postmark-php |
*.csproj / *.sln |
.NET | dotnet add package Postmark |
Message Streams
Postmark separates email by intent into Message Streams:
| Stream | Value | Purpose |
|---|---|---|
| Transactional | outbound |
1:1 triggered emails (welcome, password reset, receipts) — default |
| Broadcast | broadcast |
Marketing, newsletters, announcements |
Never mix transactional and broadcast email in the same stream — it damages deliverability.