skills$openclaw/postmark
mrgoodb4.2k

by mrgoodb

postmark – OpenClaw Skill

postmark is an OpenClaw Skills integration for data analytics workflows. Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.

4.2k stars3.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namepostmark
descriptionSend transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/postmark
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/postmark
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains postmark in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
1.9 KB
SKILL.md

name: postmark description: Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics. metadata: {"clawdbot":{"emoji":"📮","requires":{"env":["POSTMARK_SERVER_TOKEN"]}}}

Postmark

Transactional email delivery.

Environment

export POSTMARK_SERVER_TOKEN="xxxxxxxxxx"

Send Email

curl -X POST "https://api.postmarkapp.com/email" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "From": "sender@example.com",
    "To": "recipient@example.com",
    "Subject": "Hello",
    "TextBody": "Hello from Postmark!",
    "HtmlBody": "<p>Hello from Postmark!</p>"
  }'

Send with Template

curl -X POST "https://api.postmarkapp.com/email/withTemplate" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "From": "sender@example.com",
    "To": "recipient@example.com",
    "TemplateId": 12345,
    "TemplateModel": {"name": "John", "product": "Widget"}
  }'

Send Batch

curl -X POST "https://api.postmarkapp.com/email/batch" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN" \
  -H "Content-Type: application/json" \
  -d '[
    {"From": "sender@example.com", "To": "user1@example.com", "Subject": "Hi", "TextBody": "Hello 1"},
    {"From": "sender@example.com", "To": "user2@example.com", "Subject": "Hi", "TextBody": "Hello 2"}
  ]'

List Templates

curl "https://api.postmarkapp.com/templates" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN"

Get Bounce Stats

curl "https://api.postmarkapp.com/bounces" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN"
curl "https://api.postmarkapp.com/deliverystats" \
  -H "X-Postmark-Server-Token: $POSTMARK_SERVER_TOKEN"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install postmark?

Run openclaw add @mrgoodb/postmark in your terminal. This installs postmark into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/postmark. Review commits and README documentation before installing.