bounce-monitoring-workflow
정보
이 워크플로우는 구성 가능한 반송 임계값을 초과하는 연락처를 자동으로 차단하여 이메일 발신자 평판을 보호합니다. 하드 반송이 발생하면 즉시 알림을 전송하고, 반송률이 높은 연락처는 주간 수동 검토 대상으로 지정합니다. 주기적인 정리에 의존하기보다 HubSpot 마케팅 내에서 반송 관리를 선제적으로 수행할 수 있습니다.
빠른 설치
Claude Code
추천npx skills add TomGranot/hubspot-admin-skills -a claude-code/plugin add https://github.com/TomGranot/hubspot-admin-skillsgit clone https://github.com/TomGranot/hubspot-admin-skills.git ~/.claude/skills/bounce-monitoring-workflowClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Bounce Monitoring Workflow
Protect your email sender reputation with automated bounce detection and suppression. This workflow catches bounces as they happen rather than waiting for periodic cleanup.
How It Works
| Condition | Action |
|---|---|
| Hard bounce detected | Alert admin immediately, suppress contact |
| Suppression threshold reached (commonly 2-3 bounces) | Auto-suppress from marketing emails |
| Review threshold reached (commonly 3-5 bounces) | Flag for weekly manual review (delete vs. recover) |
Prerequisites
- HubSpot Marketing Professional or Enterprise plan
- A custom contact property (e.g.,
email_health_flagordelivery_status) — checkbox or dropdown with value: "flagged for review" - Admin email or Slack channel for hard bounce alerts
Building the Workflow: Three Options
Option 1: Manual UI Build
Follow the step-by-step instructions in the "Execute" section below. This is the most reliable method and gives you full control over every trigger, branch, and action.
Option 2: HubSpot Breeze AI
HubSpot's built-in Breeze AI can generate a workflow skeleton from a natural language prompt. Navigate to Automation > Workflows > Create workflow > "Describe what you want" and paste the following prompt:
Create a contact-based workflow that triggers when the "Email Bounce" property
is known (has a value). The workflow should:
1. First, check if the contact has a hard bounce reason (hard_bounce_reason is known):
- If YES: send an internal notification saying "Hard bounce: [email]" and set the
contact as a non-marketing contact
- If NO: continue to the next check
2. Check if the bounce count is greater than or equal to [your suppression threshold, commonly 2-3]:
- If YES: set the contact as a non-marketing contact, then check if bounce count
is >= [your review threshold, commonly 3-5]. If so, set a custom property
"[your bounce review property]" to "flagged" and send an internal notification
saying "Contact [email] has [review threshold]+ bounces - review for deletion"
- If NO: end (below threshold, monitor only)
Enable re-enrollment so the contact re-enters if their bounce count increases.
CRITICAL WARNING: Breeze trigger limitations. Breeze creates event-based triggers (OR logic) instead of filter-based triggers (AND logic). After Breeze creates the workflow, you MUST manually verify and fix the trigger/enrollment conditions in the UI. Breeze is best used for creating the workflow skeleton (actions, branches, delays) -- the trigger conditions almost always need manual correction.
Additional Breeze limitations for this workflow:
- Breeze cannot create "is unknown" branch conditions -- you must verify that branch conditions checking for hard bounce reason are correctly configured
- Breeze cannot configure re-enrollment rules -- you must enable re-enrollment manually
- Breeze may flatten the nested branch structure (hard bounce check > 2+ bounces > 3+ bounces) into a single level
Option 3: Claude Anthropic Chrome Extension
The Claude Anthropic Chrome extension lets Claude see and interact with the HubSpot workflow builder UI directly. You can describe the workflow logic in natural language and Claude will click through the UI to build it. This is often more accurate than Breeze for workflows with nested branching logic (this workflow has three levels of branches), because Claude can verify the branch hierarchy visually.
To use this approach:
- Open the HubSpot workflow builder in Chrome (Automation > Workflows > Create workflow)
- Activate the Claude Chrome extension
- Describe the workflow using the design table and instructions from this skill
Note on Fast Mode: If you're using Claude Code's Fast Mode to speed up workflow creation, be aware of the billing model: Haiku usage is included in your subscription, but Opus in Fast Mode consumes extra credits. For workflow building tasks (which are UI-heavy and may require many interactions), consider whether the speed tradeoff is worth the credit cost.
Step-by-Step Build Instructions
Stage 1: Before — Create Properties
-
Create your bounce review property (e.g.,
email_health_flagordelivery_status):- Object: Contact
- Type: Single checkbox or dropdown
- Group: Contact information
-
Identify your current bounce baseline — run a quick search for contacts where
hs_email_bounce> 0 to understand the starting volume.
Stage 2: Execute — Build the Workflow
Build a single contact-based workflow with branching logic.
-
Trigger:
hs_email_bounceis known (fires when bounce count updates) -
Branch 1: Hard bounce check
- Condition:
hs_email_hard_bounce_reason_enumis known - YES:
- Send internal notification: "Hard bounce: {email} — {hs_email_hard_bounce_reason_enum}"
- Set
hs_marketable_statusto non-marketing (workflow action)
- NO: Continue to Branch 2
- Condition:
-
Branch 2: Bounce count >= your suppression threshold (commonly 2-3)
- Condition:
hs_email_bounceis greater than or equal to your suppression threshold - YES:
- Set
hs_marketable_statusto non-marketing (workflow action) - Continue to Branch 3
- Set
- NO: No action (below threshold — monitor only)
- Condition:
-
Branch 3: Bounce count >= your review threshold (commonly 3-5)
- Condition:
hs_email_bounceis greater than or equal to your review threshold - YES:
- Set your bounce review property = flagged
- Send internal notification: "Contact {email} has [review threshold]+ bounces — review for deletion"
- NO: No further action
- Condition:
-
Settings:
- Re-enrollment: ON (contact should re-enter if bounce count increases)
- Goal: None
-
Turn on the workflow.
Stage 3: After — Verify
- Check workflow history after the first week of email sends.
- Review the flagged contacts list weekly — decide for each contact:
- Delete if the email is clearly invalid (typo domain, defunct company)
- Attempt recovery if the domain is valid (could be a temporary mailbox issue)
- Monitor overall bounce rate in HubSpot email health dashboard.
Stage 4: Rollback
- Turn off the workflow.
- Contacts already suppressed remain non-marketing. To reverse:
- Filter contacts suppressed by this workflow (check your bounce review property or workflow history)
- Manually set back to marketing contacts in the UI
- Clear your bounce review property values in bulk if needed.
Weekly Review Process
For contacts flagged at your review threshold:
- Export the flagged contacts list.
- For each contact, check:
- Is the email domain still active? (Quick MX record check)
- Is this a known customer or high-value contact?
- Was the bounce recent or historical?
- Delete contacts with invalid domains or clearly fake emails.
- Keep suppressed contacts with valid domains but repeated soft bounces.
- Clear the bounce review property after review.
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
