Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

postmark-automation邮戳自动化

Agent Skill

postmark-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

26

GitHub Stars

52

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:postmark-automation(邮戳自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/postmark-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill postmark-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill postmark-automation

简介

用于自动化邮件发送与通知流程,集成 Postmark 邮件服务。

  • 适用于用户注册、提醒通知等场景的邮件内容调度与管理。
  • 通过 GitHub 安装,建议配置 API 密钥并遵循模板语法编写内容。
  • 使用前应检查 SMTP 配置与邮件送达率监控机制是否就绪。
  • postmark-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Postmark Automation via Rube MCP

Automate Postmark transactional email operations through Composio's Postmark toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Postmark connection via RUBE_MANAGE_CONNECTIONS with toolkit postmark
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit postmark
  3. If connection is not ACTIVE, follow the returned auth link to complete Postmark authentication
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Send Templated Batch Emails

When to use: User wants to send templated emails to multiple recipients in one call

Tool sequence:

  1. POSTMARK_LIST_TEMPLATES - Find available templates and their IDs [Prerequisite]
  2. POSTMARK_VALIDATE_TEMPLATE - Validate template with model data before sending [Optional]
  3. POSTMARK_SEND_BATCH_WITH_TEMPLATES - Send batch emails using a template [Required]

Key parameters:

  • TemplateId or TemplateAlias: Identifier for the template to use
  • Messages: Array of message objects with From, To, TemplateModel
  • TemplateModel: Key-value pairs matching template variables

Pitfalls:

  • Maximum 500 messages per batch call
  • Either TemplateId or TemplateAlias is required, not both
  • TemplateModel keys must match template variable names exactly (case-sensitive)
  • Sender address must be a verified Sender Signature or from a verified domain

2. Manage Email Templates

When to use: User wants to create, edit, or inspect email templates

Tool sequence:

  1. POSTMARK_LIST_TEMPLATES - List all templates with IDs and names [Required]
  2. POSTMARK_GET_TEMPLATE - Get full template details including HTML/text body [Optional]
  3. POSTMARK_EDIT_TEMPLATE - Update template content or settings [Optional]
  4. POSTMARK_VALIDATE_TEMPLATE - Test template rendering with sample data [Optional]

Key parameters:

  • TemplateId: Numeric template ID for GET/EDIT operations
  • Name: Template display name
  • Subject: Email subject line (supports template variables)
  • HtmlBody: HTML content of the template
  • TextBody: Plain text fallback content
  • TemplateType: 'Standard' or 'Layout'

Pitfalls:

  • Template IDs are numeric integers, not strings
  • Editing a template replaces the entire content; include all fields you want to keep
  • Layout templates wrap Standard templates; changing a layout affects all linked templates
  • Validate before sending to catch missing variables early

3. Monitor Delivery Statistics

When to use: User wants to check email delivery health, open/click rates, or outbound overview

Tool sequence:

  1. POSTMARK_GET_DELIVERY_STATS - Get bounce counts by type [Required]
  2. POSTMARK_GET_OUTBOUND_OVERVIEW - Get sent/opened/clicked/bounced summary [Required]
  3. POSTMARK_GET_TRACKED_EMAIL_COUNTS - Get tracked email volume over time [Optional]

Key parameters:

  • fromdate: Start date for filtering stats (YYYY-MM-DD)
  • todate: End date for filtering stats (YYYY-MM-DD)
  • tag: Filter stats by message tag
  • messagestreamid: Filter by message stream (e.g., 'outbound', 'broadcast')

Pitfalls:

  • Date parameters use YYYY-MM-DD format without time component
  • Stats are aggregated; individual message tracking requires separate API calls
  • messagestreamid defaults to all streams if not specified

4. Manage Bounces and Complaints

When to use: User wants to review bounced emails or spam complaints

Tool sequence:

  1. POSTMARK_GET_BOUNCES - List bounced messages with details [Required]
  2. POSTMARK_GET_SPAM_COMPLAINTS - List spam complaint records [Optional]
  3. POSTMARK_GET_DELIVERY_STATS - Get bounce summary counts [Optional]

Key parameters:

  • count: Number of records to return per page
  • offset: Pagination offset for results
  • type: Bounce type filter (e.g., 'HardBounce', 'SoftBounce', 'SpamNotification')
  • fromdate/todate: Date range filters
  • emailFilter: Filter by recipient email address

Pitfalls:

  • Bounce types include: HardBounce, SoftBounce, SpamNotification, SpamComplaint, Transient, and others
  • Hard bounces indicate permanent delivery failures; these addresses should be removed
  • Spam complaints affect sender reputation; monitor regularly
  • Pagination uses count and offset, not page tokens

5. Configure Server Settings

When to use: User wants to view or modify Postmark server configuration

Tool sequence:

  1. POSTMARK_GET_SERVER - Retrieve current server settings [Required]
  2. POSTMARK_EDIT_SERVER - Update server configuration [Optional]

Key parameters:

  • Name: Server display name
  • SmtpApiActivated: Enable/disable SMTP API access
  • BounceHookUrl: Webhook URL for bounce notifications
  • InboundHookUrl: Webhook URL for inbound email processing
  • TrackOpens: Enable/disable open tracking
  • TrackLinks: Link tracking mode ('None', 'HtmlAndText', 'HtmlOnly', 'TextOnly')

Pitfalls:

  • Server edits affect all messages sent through that server
  • Webhook URLs must be publicly accessible HTTPS endpoints
  • Changing SmtpApiActivated affects SMTP relay access immediately
  • Track settings apply to future messages only, not retroactively

Common Patterns

Template Variable Resolution

1. Call POSTMARK_GET_TEMPLATE with TemplateId
2. Inspect HtmlBody/TextBody for {{variable}} placeholders
3. Build TemplateModel dict with matching keys
4. Call POSTMARK_VALIDATE_TEMPLATE to verify rendering

Pagination

  • Set count for results per page (varies by endpoint)
  • Use offset to skip previously fetched results
  • Increment offset by count each page until results returned < count
  • Total records may be returned in response metadata

Known Pitfalls

Authentication:

  • Postmark uses server-level API tokens, not account-level
  • Each server has its own token; ensure correct server context
  • Sender addresses must be verified Sender Signatures or from verified domains

Rate Limits:

  • Batch send limited to 500 messages per call
  • API rate limits vary by endpoint; implement backoff on 429 responses

Response Parsing:

  • Response data may be nested under data or data.data
  • Parse defensively with fallback patterns
  • Template IDs are always numeric integers

Quick Reference

TaskTool SlugKey Params
Send batch templated emailsPOSTMARK_SEND_BATCH_WITH_TEMPLATESMessages, TemplateId/TemplateAlias
List templatesPOSTMARK_LIST_TEMPLATESCount, Offset, TemplateType
Get template detailsPOSTMARK_GET_TEMPLATETemplateId
Edit templatePOSTMARK_EDIT_TEMPLATETemplateId, Name, Subject, HtmlBody
Validate templatePOSTMARK_VALIDATE_TEMPLATETemplateId, TemplateModel
Delivery statsPOSTMARK_GET_DELIVERY_STATS(none or date filters)
Outbound overviewPOSTMARK_GET_OUTBOUND_OVERVIEWfromdate, todate, tag
Get bouncesPOSTMARK_GET_BOUNCEScount, offset, type, emailFilter
Get spam complaintsPOSTMARK_GET_SPAM_COMPLAINTScount, offset, fromdate, todate
Tracked email countsPOSTMARK_GET_TRACKED_EMAIL_COUNTSfromdate, todate, tag
Get server configPOSTMARK_GET_SERVER(none)
Edit server configPOSTMARK_EDIT_SERVERName, TrackOpens, TrackLinks

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.66%
按下载量换算78

Claude

31.02%
按下载量换算66

Cursor

18.57%
按下载量换算40

Gemini CLI

10.43%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills