Install
$ agentstack add skill-crealwork-ai-marketing-kit-e-blast-newsletter ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Resend Email
Resend 하나로 트랜잭셔널 메일 + 뉴스레터(브로드캐스트)를 처리한다. Free 티어: $0, 월 3,000통, 일 100통, 도메인 1개 — 소규모 뉴스레터는 무료로 충분하다. (검증: resend.com/pricing, 2026-07-16)
Hard rules
- 발송은 유저 게이트 — "작성해줘"는 발송 승인이 아니다. 브로드캐스트는
반드시 초안 상태로 만들어 유저 확인 후 send.
- 브로드캐스트에는
{{{RESEND_UNSUBSCRIBE_URL}}}필수 — 수신거부 링크 없는
마케팅 메일은 스팸법 위반(CAN-SPAM/개인정보보호법).
- 본발송 전 셀프 테스트 — 자기 주소로 1통 보내 렌더링/링크/머지태그 확인.
- 일 100통 제한(Free) — 100명 넘는 리스트는 일 단위 분할 또는 Pro($20/mo, 5만통)
업그레이드를 유저에게 안내.
- 콜드 아웃리치 금지 — Resend는 permission 기반. 콜드메일은 별도 도메인 +
전용 툴로 (b2b-cold-email).
- Windows에서 API 호출은 Python urllib + utf-8 (curl+cp1252 이모지 크래시).
- 제목은 A/B 전제 — 브로드캐스트마다 제목 후보 3개(다른 축: 숫자/질문/
직설)를 만들어 유저가 고르고, 리스트가 1,000+ 이면 오디언스를 세그먼트로 나눠 실제 A/B 발송 → 오픈율 승자를 다음 호 기본 축으로. 히어로 이미지가 있으면 image-gen 스킬로 변형 2–3개.
Setup (1회)
- resend.com 가입 → API Keys → env
RESEND_API_KEY(re_...) 저장. - 도메인 인증: Dashboard → Domains → Add (또는
POST /domains) → 발급된
SPF/DKIM DNS 레코드를 도메인 DNS에 추가 → Verify. from은 인증된 도메인의 주소만 가능 (뉴스레터 ).
- Base
https://api.resend.com,Authorization: Bearer $RESEND_API_KEY. - VERIFY:
GET /domains에 status "verified".
A. 트랜잭셔널 (1:1)
POST /emails
{ "from": "Acme ", "to": ["user@example.com"],
"subject": "...", "html": "..." }
- 대량 개별 발송:
POST /emails/batch— 한 번에 최대 100개 객체. reply_to,cc,bcc,attachments지원.
B. 뉴스레터 (Audience + Broadcast)
# 1) 오디언스 생성 (리스트당 1개)
POST /audiences { "name": "Newsletter" }
# 2) 구독자 추가
POST /audiences/{id}/contacts
{ "email": "user@example.com", "first_name": "Jane", "unsubscribed": false }
# 3) 브로드캐스트 생성 (초안)
POST /broadcasts
{ "audience_id": "aud_...",
"from": "News ",
"name": "2026-07 뉴스레터",
"subject": "이번 달 소식",
"html": "Hi {{{contact.first_name|there}}}, ...
수신거부" }
# 4) 유저 승인 후 발송 (즉시 또는 예약)
POST /broadcasts/{id}/send # 즉시
POST /broadcasts/{id}/send { "scheduled_at": "2026-07-20T09:00:00+09:00" }
- 머지 태그:
{{{contact.first_name|fallback}}}— 파이프 뒤가 기본값. - 생성 시
"send": true+"scheduled_at": "in 1 hour"(자연어 허용)로 한 번에
예약도 가능 — 단 rule 1 때문에 기본은 초안 → 승인 → send 2단계.
- 수신거부는 Resend가 자동 처리 (
unsubscribed: true로 마킹, 이후 브로드캐스트
자동 제외).
C. 확인 · 운영
GET /emails/{id}— 발송 상태 (delivered/bounced/complained).- 바운스/컴플레인은 리스트에서 정리 — 가짜 리드 필터링에도 쓴다 (리드 수집 직후
자동 환영 메일 → hard bounce = 가짜 DB 즉시 삭제).
- 도달률 기본기: SPF/DKIM 인증 완료, from 주소 고정, 제목 낚시 금지,
텍스트 버전 자동 생성 확인.
MailerLite 등에서 이사올 때
CSV로 구독자 내보내기 → unsubscribed 상태 보존해서 contacts로 임포트 (수신거부자 재구독 처리 절대 금지) → 첫 브로드캐스트는 소규모 세그먼트로 도달률 확인 후 전체.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: crealwork
- Source: crealwork/ai-marketing-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.