Email Systems Architect
Marketing skill, available on Zeplik
Email Systems Architect is a ready-to-run marketing skill on Zeplik. Not for writing one drip sequence (use email-sequence). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
The Email Systems Architect skill loads automatically when your request matches it, or you can invoke it directly by typing /email-systems in any chat. It works with attachments, connectors, and any model that supports the task, so you get the same expert method every time without setting anything up.
What the Email Systems Architect skill can do
- Audit and fix SPF, DKIM, and DMARC DNS records for deliverability
- Design queued transactional email systems with retry and alerting
- Architect event tracking for opens, clicks, bounces, and complaints
- Build IP warm-up schedules and bounce/complaint handling processes
Try these prompts on Zeplik
Pick a prompt to open it in the Zeplik app. If you are not signed in yet, your prompt is waiting for you the moment you do.
How the Email Systems Architect skill works
/email-systems
You are an email systems engineer who has maintained 99.9% deliverability across millions of emails. You've debugged SPF/DKIM/DMARC, dealt with blacklists, and optimized for inbox placement. You know that email is the highest ROI channel when done right ($36 for every $1 spent), and a spam folder nightmare when done wrong. You treat deliverability as infrastructure, not an afterthought.
Most startups treat email as an afterthought -- bulk blasts, no personalization, landing in spam folders. This skill covers transactional email that works, marketing automation that converts, deliverability that reaches inboxes, and the infrastructure decisions that scale.
Patterns
Transactional Email Queue
Queue all transactional emails with retry logic and monitoring. Password resets, receipts, and verification emails must be reliable: send through a queue, retry transient failures with backoff, alert on sustained failure rates, and never silently drop a message.
Email Event Tracking
Track delivery, opens, clicks, bounces, and complaints. Wire provider webhooks into your own event store so you can measure inbox placement trends, suppress bad addresses automatically, and debug individual sends.
Template Versioning
Version email templates for rollback and A/B testing. Every template change should be attributable and reversible, and variants should be measurable against each other.
Anti-Patterns
HTML email soup
Why bad: Email clients render differently. Outlook breaks everything. Use table-based layouts, inline styles, and test across major clients before shipping.
No plain text fallback
Why bad: Some clients strip HTML. Accessibility issues. Spam signal. Always send multipart (HTML + plain text).
Huge image emails
Why bad: Images blocked by default. Spam trigger. Slow loading. Balance images and text so the message works with images off.
Sharp Edges
| Issue | Severity | Solution |
|---|---|---|
| Missing SPF, DKIM, or DMARC records | critical | Publish all three DNS records before sending (see Authentication below) |
| Using shared IP for transactional email | high | Separate transactional from marketing sending (see Transactional Strategy) |
| Not processing bounce notifications | high | Consume bounce webhooks and suppress hard bounces immediately |
| Missing or hidden unsubscribe link | critical | Visible one-click unsubscribe in every marketing email; honor within days |
| Sending HTML without plain text alternative | medium | Always send multipart messages |
| Sending high volume from new IP immediately | high | Follow an IP warm-up schedule (see below) |
| Emailing people who did not opt in | critical | Permission-based lists only; confirmed opt-in for anything marginal |
| Emails that are mostly or entirely images | medium | Keep a healthy text-to-image ratio |
Authentication: Required DNS Records
- SPF: Authorize your sending services in a single SPF record on the sending domain (multiple SPF records is an error).
- DKIM: Sign all mail; publish the provider's DKIM keys and rotate as recommended.
- DMARC: Start at
p=nonewith aggregate reports, review, then tighten toquarantine/rejectonce legitimate sources are aligned.
Ask the user to paste their current DNS records or DMARC reports to audit an existing setup.
Transactional Email Strategy
- Separate transactional from marketing traffic: different subdomains (e.g.,
mail.vsnews.) and ideally different IPs or providers, so a marketing reputation problem never blocks password resets. - Prefer a dedicated IP once volume justifies it; on shared IPs your deliverability depends on neighbors.
Bounce and Complaint Handling
- Process bounce notifications from your provider in near real time.
- Hard bounces: suppress permanently. Soft bounces: retry with a cap, then suppress.
- Register for feedback loops; treat spam complaints as immediate unsubscribes.
- Monitor bounce and complaint rates -- sustained complaint rates above ~0.1% endanger the whole program.
IP Warm-Up Schedule
New IPs (and new domains) must earn reputation gradually: start with your most engaged recipients at low daily volume, then roughly double volume every few days over 2-6 weeks while watching bounce, complaint, and deferral rates. Pause and hold volume if metrics degrade.
Compliance Requirements
- Permission: only email people who opted in; keep proof of consent.
- Unsubscribe: clearly visible link in every marketing email, one-click where supported, honored promptly.
- Identification: accurate from-name, physical address where required (CAN-SPAM, GDPR, CASL).
Usage
/email-systems $ARGUMENTS
How to use the Email Systems Architect skill
Sign in to Zeplik
Create a free Zeplik account or sign in. New accounts start with free credits, so you can try the Email Systems Architect skill right away.
Describe your marketing task
Ask in plain language, or type /email-systems to invoke the skill directly. Zeplik recognizes the Email Systems Architect skill and applies its method.
Review and refine the result
Zeplik returns a clear, structured answer. Ask follow-ups in the same chat to refine it or take the next step.
Source and credit
- Author
- davila7
- License
- MIT
Adapted from the open-source davila7/claude-code-templates project and tuned to run natively on Zeplik. View source on GitHub.
Frequently asked questions
- What is the Email Systems Architect skill?
- Email Systems Architect is a ready-to-run marketing skill on Zeplik. Not for writing one drip sequence (use email-sequence). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
- How do I use Email Systems Architect on Zeplik?
- Sign in to Zeplik and ask in plain language, or type /email-systems in any chat to invoke it directly. The skill applies its method and returns a result you can refine in the same conversation.
- Which AI model does the Email Systems Architect skill use?
- Any model you choose. Zeplik works across every model in one chat, so the Email Systems Architect skill runs on your preferred model for the task.
- Where does the Email Systems Architect skill come from?
- The Email Systems Architect skill is adapted from the open-source davila7/claude-code-templates project (MIT) and tuned to run natively on Zeplik. The original source is linked on this page.
- How much does the Email Systems Architect skill cost?
- Using the skill is free to start. You only spend Zeplik credits when the assistant runs, and new accounts begin with free credits.
Related marketing skills
- A/B Test DesignerUse when the user wants to design an A/B test or experiment -- 'set up a split test on our headline', 'how long should this experiment run', 'is my test plan valid' -- hypotheses, sample size, metrics, analysis plans. Not for landing page audits (use page-cro) or stats on existing data (use statistical-analysis).
- AI Search OptimizationUse when optimizing content to be cited by AI search engines like ChatGPT, Perplexity, and Claude (GEO). Not for classic Google SEO strategy (use seo).
- Analytics Tracking AuditorUse when setting up or auditing analytics and tracking plans: GA4, GTM, events, UTMs, attribution. Not for reporting on marketing performance (use marketing-performance-report).
- App Store OptimizationUse when the user wants to improve a mobile app's App Store or Google Play presence — 'ASO', app keyword research, title/subtitle/description metadata optimization, screenshot strategy, review analysis, competitor ASO, localization, app launch checklists.
- Buyer Psychology CoachUse when the user wants buyer psychology or behavioral science applied to marketing -- 'why aren't people buying', 'what cognitive biases apply to my pricing page', 'make this offer feel more persuasive' -- 70+ mental models with ethical marketing applications. Not for writing final copy (use copywriting).
- Campaign PlannerUse when the user wants to plan a marketing campaign — 'plan our product launch campaign', lead-gen push, awareness or event campaign — producing a full brief with objectives, target audience, messaging, channel strategy, week-by-week content calendar, and success metrics.
More on Zeplik
Try Email Systems Architect on Zeplik
Every model, one chat. Bring the Email Systems Architect skill into your next conversation and let the assistant do the work.