Bootcamp Modules
The Deliverability Triangle
Sending an email does not guarantee it will arrive. Major providers like Gmail and Microsoft strictly filter email based on technical verification arrays, which make up the standard triangle:
- SPF (Sender Policy Framework): A TXT DNS record explicitly whitelisting server IPs allowed to broadcast on your domain's behalf.
- DKIM (DomainKeys Identified Mail): Uses asymmetric cryptography to digitally sign your email payload.
- DMARC (Domain-based Message Authentication): Informs the receiving server what to do (reject vs quarantine) if the first two checks fail.
Infrastructure Mechanics
The standard model for sending marketing mail is subscribing to a SaaS orchestrator (like MailChimp or Klaviyo). However, this creates a major financial hazard: per-contact bloat.
These companies are fundamentally charging extreme markup over standard SMTP Relay servers like AWS SES. By directly attaching a desktop frontend to a raw SMTP instance via API keys, you drastically reduce your expenditure.
List Hygiene & Throttles
Warming up domains is a requirement. If you spin up a brand new domain and blast 50,000 cold contacts, your domain authority will instantly shatter.
You must maintain pristine List Hygiene by utilizing webhooks to catch Bounces and Complaints automatically.
- Implement soft throttling logic natively during blasts.
- Instantly prune hard bounces from SQL tables.
- Warm up completely fresh domains incrementally (100 -> 500 -> 2,500 daily bursts).
Scalable Rendering
Formatting CSS inside HTML emails is notoriously fragile. Clients like Outlook 2013 do not compute flexbox grids or modern CSS grids.
Deploy responsive visual builders based on MJML translation or strictly table-based HTML injection. Never assume web CSS identically renders on a mobile inbox app without rigorous testing protocols or preview simulations.
Unthrottled Architecture
Transitioning off of legacy platforms requires a specialized environment capable of digesting the raw contact records.
Vexifa EMP operates entirely on a heavy local desktop framework running its databases right on your hard-drive. That allows mapping Amazon SES endpoints effortlessly, giving you the drag-and-drop orchestration you love about SaaS apps—without their rigid billing requirements.
Vexifa EMP bypasses scaling fees, ensuring that when your audience grows from 20,000 to 200,000 overnight... your overhead doesn't increase.
AI Studio & Brand Voice
Generic AI-generated copy is detectable and performs poorly. Vexifa's AI Studio solves this with Brand Voice profiles — configurable personas that shape every word the AI produces.
A Brand Voice profile defines your tone adjectives (bold, empathetic, technical), phrases to use and avoid, and can be seeded with your own existing copy for reference. The AI uses this context every time it generates a subject line, preheader text, or email body.
The Three AI Studio Tools
- Copy Generator: Describe your campaign goal in plain English. The AI produces a full email draft in your Brand Voice, with a suggested subject line and preheader.
- Spam Probability Scorer: Analyses your subject line and content for spam trigger words, excessive punctuation, and image-to-text ratio — the same signals used by spam filters.
- Send Time Optimizer: Analyses the open-time distribution of your past campaigns and recommends the optimal send window for your specific audience.
The AI Studio runs on your OpenRouter API key. Free-tier models like meta-llama/llama-3.1-8b-instruct:free are fully capable for most copy tasks and cost $0.00 per request.
Automation & Drip Sequences
A one-time blast is a campaign. A sequence that follows up, branches on behaviour, and nurtures a contact over weeks — that is an Automation. This distinction is where most solo marketers underperform platforms like ActiveCampaign ($149/month), which lock their automation builder behind premium tiers.
Vexifa's automation engine is event-driven. A trigger fires when something happens — a contact is added to a list, clicks a link, or has a tag applied. From there, a sequence of email sends, time delays, condition branches, and action nodes executes automatically.
High-Value Sequence Patterns
- Welcome Series: Trigger on "Added to List". Send 3–5 emails over 7 days introducing your brand, your best content, and a soft CTA.
- Abandoned Sequence: Trigger on a tag like
cart-abandoned. Send a reminder at 1 hour, a social proof email at 24 hours, a discount offer at 72 hours. - Re-engagement Flow: Trigger on the
churn-risktag (set by Contact Scoring). Send a "we miss you" email. If no click in 7 days, move to a suppression list. - Post-Purchase Nurture: Trigger on tag
customer. Send onboarding tips, upsell offers, and review requests on a fixed schedule.
Contact Intelligence
Most email platforms let you see who opened an email. Vexifa goes further: it builds a dynamic intelligence profile for every contact based on the entire history of their interactions with your campaigns.
Lead Scoring
Each engagement event contributes a score:
- Email opened: +5
- Link clicked: +15
- Reply detected: +25
- No engagement for 14 days: −10
- No engagement for 30 days: −25
Scores are calculated in real time and visible in the contact record and the audience table. Sort your list by Score descending to find your warmest, most ready-to-buy contacts and prioritise them for your direct or high-value campaigns.
Churn Prediction
Churn Prediction is Score over time with a threshold. When a contact's score drops below your configured floor (e.g. 20 points), Vexifa automatically applies the churn-risk tag. You can then use this tag as an Automation Sequence trigger to fire a re-engagement flow before the contact formally unsubscribes.
The key insight: it is always cheaper to re-engage a disengaged subscriber than to acquire a new one. Churn Prediction gives you the signal before the unsubscribe.
All scoring data is stored locally in your SQLite database. You own the intelligence — it never gets wiped when you cancel a subscription because there is no subscription to cancel.
Bootcamp Completed!
You now understand the full stack: deliverability, infrastructure, list health, AI copywriting, automation sequences, and contact intelligence. This is the operational foundation that $200/month platforms sell access to — you now run it locally.