惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
The Cloudflare Blog
D
DataBreaches.Net
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
量子位
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
博客园_首页
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The SFMC Discovery Checklist We Run Before Touching the UI
SapotaCorp · 2026-05-24 · via DEV Community
Cover image for The SFMC Discovery Checklist We Run Before Touching the UI

SapotaCorp

Every SFMC engagement that blows up in week four could have been saved in week one. The story is almost always the same: client says "we want to send marketing email," team agrees, team builds Data Extensions and templates and automations, and two weeks later the client mentions three things that change the architecture entirely.

  • "Oh, I thought emails would send from each sales rep's address?"
  • "My data is in Salesforce CRM, not a CSV file."
  • "I also need to segment by purchase behavior from Shopify."
  • "Compliance requires GDPR consent tracking."

Each of those is a rebuild, and they all happen in the same conversation because nobody asked upfront. Rework is 3x the cost of doing it right the first time.

Here's the five-group discovery checklist we run before opening Content Builder.

Group 1: Where does the client's data actually live?

  • Subscriber data is stored where today - CSV, Salesforce CRM (Sales/Service Cloud), own database (MySQL, PostgreSQL), e-commerce platform (Shopify, Magento), or multiple sources?
  • What's the unique identifier per subscriber (CustomerID, MemberID, email)? Does it match across systems?
  • Does the data contain PII (name, email, address, phone)? Who has access today?
  • Does GDPR or PDPA apply? EU users mean GDPR is mandatory; VN/TH users mean PDPA. Do you need consent tracking?

Group 2: What email types and use cases need to ship?

  • Marketing, transactional, or both?
  • Monthly volume? Under 250k can live on shared IP; above that needs dedicated IP + warming plan.
  • Frequency - daily, weekly, monthly, trigger-based?
  • Personalization depth - first-name-only, dynamic content by segment, or full AMPscript logic?
  • Multi-language? How many languages, who provides translations?

Group 3: Tech stack and integrations

  • Salesforce CRM yes/no? If yes, Marketing Cloud Connect required; which objects need to sync (Contact, Lead, Opportunity, custom)?
  • Other systems to integrate - e-commerce (abandoned cart, order confirmation), loyalty system, CDP/DMP, BI tool?
  • Data ingestion path - SFTP drop, real-time API, Salesforce Sync, manual import?
  • Data export needs - tracking data to warehouse, subscriber list back to CRM, automated reports?

Group 4: Team and operations

  • Who operates SFMC after handoff - technical team or marketing team? HTML/CSS literate? SQL literate? This decides template strategy.
  • Email approval workflow - Content Builder Approval Workflow needed? How many approvers (Legal, Compliance, Brand)?
  • Multiple brands or Business Units? Enterprise account with multiple BUs, data sharing between BUs?
  • Reporting audience - marketing team or C-level? Dashboard or exported files? BI tool integration (Tableau, Power BI)?

Group 5: Compliance and legal

  • How is the subscriber list collected - explicit opt-in or purchased? Bought lists are a red flag; escalate immediately.
  • Unsubscribe mechanism - Preference Center exists? Need a custom one? Does unsubscribe need to sync back to CRM?
  • Physical sender address - CAN-SPAM requires it in every commercial email.
  • Do any emails need to reach unsubscribed contacts (recalls, safety notices, account security)? Those are Send Classification = Transactional.

The timeline that falls out

Once discovery is clean, the first month looks like:

Week 1: Discovery
  - Run the five-group checklist with the client
  - Map data sources and unique identifiers
  - Identify compliance requirements (GDPR, PDPA, CAN-SPAM)
  - Prioritize use cases
  - Define success metrics

Week 2: Foundation setup
  - Design the data model before creating the first Data Extension
  - Sender Profile, Delivery Profile, Send Classification
  - Verify From Email Address
  - Enhanced SFTP if file import is needed
  - Install MC Connect if needed and test the sync
  - IP warming plan if dedicated IP is in scope

Week 3-4: Build MVP
  - Create DEs per the data model
  - Do the first data import and verify row counts
  - Build the first template
  - Ship use case #1 (usually welcome email)
  - Test thoroughly before go-live

Go-live -> Monitor -> Optimize
  - Watch metrics daily for the first two weeks
  - Watch bounce rate and complaint rate like a hawk
  - Adjust based on real data

Enter fullscreen mode Exit fullscreen mode

Takeaway

Discovery feels unproductive because you're not building anything. It's the most leveraged time on the project. Every hour there saves three hours of rework. When a new SFMC engagement lands on our plate, nothing gets dragged onto a canvas until the five groups are answered, written down, and agreed with the client.


Starting an SFMC engagement? Our Salesforce team runs discovery, data model design, and Marketing Cloud builds end to end. Get in touch ->

See our full platform services for the stack we cover.