Send physical mail from CRM contacts using PostGrid. Use when pulling contacts from GoHighLevel (GHL) or Follow Up Boss (FUB), mapping contact/address fields, generating personalized mail payloads, and submitting letters or postcards through PostGrid API. Also use when another skill already produced GHL/FUB contact JSON and mail should be sent from that dataset.
使用此技能可从CRM联系人中开展定向直邮推广。
列出此技能中包含的完整PostGrid端点目录:
bash
python3 scripts/postgrid_api.py list-endpoints
调用已编录的PostGrid端点:
bash
python3 scripts/postgrid_api.py call contacts.list
直接调用任意PostGrid端点(完整文档覆盖回退):
bash
python3 scripts/postgrid_api.py call-raw GET /letters \
--base-url https://api.postgrid.com/print-mail/v1
将FUB联系人标准化为JSON:
bash
python3 scripts/crmpostgridmailer.py fetch \
--provider fub \
--limit 200 \
--output /tmp/fubcontactsnormalized.json
将GHL联系人标准化为JSON:
bash
python3 scripts/crmpostgridmailer.py fetch \
--provider ghl \
--location-id $GHLLOCATIONID \
--limit 200 \
--output /tmp/ghlcontactsnormalized.json
试运行PostGrid负载生成:
bash
python3 scripts/crmpostgridmailer.py send \
--contacts-file /tmp/ghlcontactsnormalized.json \
--from-json-file references/examplesenderus.json \
--html-template-file references/examplelettertemplate.html \
--mail-route letters \
--dry-run
一步完成提取+发送:
bash
python3 scripts/crmpostgridmailer.py run \
--provider fub \
--limit 100 \
--from-json-file references/examplesenderus.json \
--html-template-file references/examplelettertemplate.html \
--mail-route letters \
--output /tmp/mailsendsummary.json
从原始地址+内容发送一次性邮件:
bash
python3 scripts/crmpostgridmailer.py one-off \
--to-name Jane Seller \
--to-address1 742 Evergreen Terrace \
--to-city Springfield \
--to-state IL \
--to-postal-code 62704 \
--from-json-file references/examplesenderus.json \
--content-text Hi Jane,\n\nId love to send you a fresh home valuation this week.\n\nBest,\nDaniel \
--mail-route letters \
--dry-run
使用其他GHL/FUB技能导出的JSON:
bash
python3 scripts/crmpostgridmailer.py run \
--contacts-file /tmp/contactsfromother_skill.json \
--from-json-file references/examplesenderus.json \
--html-template-file references/examplelettertemplate.html \
--mail-route letters
标准化联系人结构:
默认情况下,缺少address1、city、state或postal_code的联系人将被跳过。
有关路由/标头假设和覆盖策略,请参阅references/postgrid-notes.md。
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 crm-snail-mail-postgrid-1776205501 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 crm-snail-mail-postgrid-1776205501 技能
skillhub install crm-snail-mail-postgrid-1776205501
文件大小: 14.65 KB | 发布时间: 2026-4-15 11:27