← back to Marketing Command Center
Add Glitter & Sequin exclusivity email draft (TK-11075) — send-ready CC campaign, all links live-verified 200
b07efa8f9fba6d0f16c94b3df75fa7f1d9fbf992 · 2026-09-01 12:28:32 -0700 · Steve Abrams
Files touched
A drafts/glitter-sequin-exclusive/README.mdA drafts/glitter-sequin-exclusive/build-email.mjsA drafts/glitter-sequin-exclusive/campaign.htmlA drafts/glitter-sequin-exclusive/draft-payload.jsonA drafts/glitter-sequin-exclusive/draft-response.json
Diff
commit b07efa8f9fba6d0f16c94b3df75fa7f1d9fbf992
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Tue Sep 1 12:28:32 2026 -0700
Add Glitter & Sequin exclusivity email draft (TK-11075) — send-ready CC campaign, all links live-verified 200
---
drafts/glitter-sequin-exclusive/README.md | 70 +++++++
drafts/glitter-sequin-exclusive/build-email.mjs | 218 +++++++++++++++++++++
drafts/glitter-sequin-exclusive/campaign.html | 174 ++++++++++++++++
drafts/glitter-sequin-exclusive/draft-payload.json | 6 +
.../glitter-sequin-exclusive/draft-response.json | 1 +
5 files changed, 469 insertions(+)
diff --git a/drafts/glitter-sequin-exclusive/README.md b/drafts/glitter-sequin-exclusive/README.md
new file mode 100644
index 0000000..c50c19a
--- /dev/null
+++ b/drafts/glitter-sequin-exclusive/README.md
@@ -0,0 +1,70 @@
+# Glitter & Sequin — Exclusive Collection (Constant Contact DRAFT)
+
+**Status:** send-ready artifact built + validated. Draft-create returned a MOCK id
+because Connie CC (the live Constant Contact v3 OAuth holder) is unreachable from
+this node. Real draft-create is **pending Connie reachability** (see below).
+Ticket: TK-11075. Cost: **$0** (CC reads/draft are free; all render + verify local).
+
+## What this is
+An "ad" (email campaign) for the glitterwalls.com line, angle = **EXCLUSIVITY**
+(private / trade-first release), reusing the Designer Wallcoverings email design
+system. DRAFT ONLY — do NOT send/schedule (hard-gated, Steve's decision).
+
+- **Campaign name:** `Glitter & Sequin — Exclusive Collection`
+- **Subject:** `By invitation: the Glitter & Sequin collection`
+- **Preheader:** `A private release of shimmer, sequin, and metallic, reserved for our trade list first.`
+- **From:** `info@designerwallcoverings.com` (DW's verified CC sender)
+- **Files:** `campaign.html` (send-ready HTML) · `draft-payload.json` (exact POST body)
+ · `build-email.mjs` (regenerator) · `draft-response.json` (mock draft-create result)
+
+## Reused design elements (from the DW email system / brand lib)
+Cormorant Garamond wordmark, ink `#14110f` / cream `#f4efe7` / gold `#b8925a`
+palette, gold hairline rule, centered hero image block, 2-col product grid, dark
+CTA button, editorial serif+Inter type. CAN-SPAM footer carries the real physical
+mailing address + working unsubscribe (send-ready).
+
+> NOTE — the "last sent email" the design was meant to mirror could not be pulled:
+> Connie (Constant Contact) is unreachable from this node, and the MCC proxy reaches
+> Connie but is 401'd, so the live campaign list falls back to MOCK. The design was
+> therefore built from the DW brand system + the mock "last sent" (Spring Grasscloth
+> Edit) shape, which is the same house design language.
+
+## Verified send-ready (all checks green)
+- CAN-SPAM: physical address `15442 Ventura Blvd #102, Sherman Oaks, CA 91403` +
+ `[[trackingUnsubscribe]]` present (module `_canSpamCheck` → ok).
+- CA §17529.5: subject clean (no ALL-CAPS / fake RE: / deceptive), from valid.
+- Word "Wallpaper" BANNED: 0 occurrences in visible copy/alt (only inside live URL
+ slugs, unavoidable).
+- Slop lint: score 0.
+- **Every href + image verified 200 on the live store** (contrarian caught the
+ original stale-catalog links that 404'd; rebuilt off the live
+ `/collections/glitter-wallpaper` feed — 18/18 URLs now 200).
+- Real collection: `/collections/glitter-wallpaper` ("Glitter + Sequins", 663 SKUs).
+
+> Set `MCC_PASS` first (marketing-command-center basic-auth pass, in its `.env`):
+> `export MCC_PASS="$(grep '^MCC_PASS=' ~/Projects/marketing-command-center/.env | cut -d= -f2-)"`
+
+## To CREATE THE DRAFT once Connie is reachable
+When the Connie CC node (`100.107.67.67:9820`) is reachable from the running box
+(or the MCC's Connie auth is fixed so it stops 401'ing), re-run the same POST — it
+will create a REAL Constant Contact DRAFT (`mock:false`, real `draft_id`):
+
+```sh
+# From ~/Projects/marketing-command-center/drafts/glitter-sequin-exclusive
+curl -s -u "admin:$MCC_PASS" -H 'Content-Type: application/json' \
+ -X POST http://127.0.0.1:9661/api/constant-contact/draft \
+ --data @draft-payload.json | node -e 'let d="";process.stdin.on("data",c=>d+=c).on("end",()=>{const r=JSON.parse(d);console.log(r.mock?"STILL MOCK — Connie unreachable":"REAL DRAFT "+r.draft_id, r.status)})'
+```
+
+## To SEND (GATED — Steve's decision only; do NOT run without his go)
+Sending is send-to-a-list → hard-gated (CAN-SPAM / §17529.5 / TCPA / CCPA). The
+one-line gated command Steve runs to schedule/send AFTER he approves AND once a
+real `draft_id` exists (replace `<REAL_DRAFT_ID>`; `scheduled_time` omitted = send now):
+
+```sh
+curl -s -u "admin:$MCC_PASS" -H 'Content-Type: application/json' \
+ -X POST http://127.0.0.1:9661/api/constant-contact/schedule \
+ --data '{"draft_id":"<REAL_DRAFT_ID>","confirm":true,"dryRun":false,"subject":"By invitation: the Glitter & Sequin collection","from":"info@designerwallcoverings.com","html":"'"$(node -e 'process.stdout.write(JSON.stringify(require("./draft-payload.json").html).slice(1,-1))')"'"}'
+```
+(The `/schedule` route re-runs the CAN-SPAM + §17529.5 gates and refuses without
+`confirm:true`; `dryRun:false` is what actually commits the send.)
diff --git a/drafts/glitter-sequin-exclusive/build-email.mjs b/drafts/glitter-sequin-exclusive/build-email.mjs
new file mode 100644
index 0000000..2291a65
--- /dev/null
+++ b/drafts/glitter-sequin-exclusive/build-email.mjs
@@ -0,0 +1,218 @@
+// Build the send-ready "Glitter & Sequin — Exclusive Collection" email HTML.
+// Reuses the DW email design system (Cormorant Garamond wordmark, ink/cream/gold
+// palette, centered hero image block, 2-col product grid, gold CTA button,
+// CAN-SPAM footer). Real glitterwalls product imagery + product URLs.
+// $0 (local render, no paid API).
+import { writeFileSync } from 'node:fs';
+
+const BRAND = {
+ name: 'Designer Wallcoverings',
+ ink: '#14110f', cream: '#f4efe7', gold: '#b8925a', paper: '#ffffff',
+ muted: '#6b6259',
+ display: "'Cormorant Garamond', Georgia, 'Times New Roman', serif",
+ body: "Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif",
+};
+
+// CAN-SPAM physical mailing address (real DW/Glitter Walls address, Sherman Oaks).
+const ADDRESS = '15442 Ventura Blvd #102, Sherman Oaks, CA 91403';
+const PHONE = '(888) 373-4564';
+// www is the canonical host the live store serves (non-www 301→www) — link to www
+// directly to avoid a redirect hop on every click.
+const SITE = 'https://www.designerwallcoverings.com';
+// Real, live collection: "Glitter + Sequins" (663 products). The earlier
+// /collections/glitter-sequin was invented and 404'd — verified fix.
+const COLLECTION_URL = 'https://www.designerwallcoverings.com/collections/glitter-wallpaper';
+
+// Hero — Hollywood Sequin (White). Verified LIVE (200) + image resolves.
+const HERO = {
+ title: 'Hollywood Sequin — White',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96899f7e4f23e376b65ddb07bbdd3af7.jpg?v=1572309253',
+ url: 'https://www.designerwallcoverings.com/products/hollywood-sequin-wallcoverings-hsw-51526',
+};
+
+// Grid — sequin + glass-bead, mixed colorways. EVERY url + image verified LIVE 200
+// against the live store (rebuilt off the collection feed, not stale local data).
+// Note: some handles carry "wall-paper" in the SLUG (unavoidable, live URL) — the
+// banned word never appears in any visible copy or alt text.
+const GRID = [
+ { title: 'Sexy Sequin — Silver',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sexy-sequin-wallcovering--silver-mirror_161dfd81-3134-498e-a6cf-9f7188cf989b.jpg',
+ url: 'https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-silver-mirror-gls-102' },
+ { title: 'Sequin — Black',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/products/371c9614029653c869b8980b744600fa.jpg',
+ url: 'https://www.designerwallcoverings.com/products/sequin-wall-paper-black-gls-417' },
+ { title: 'Venezia Glass Beads — Gold',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/files/936928828518ebf09a70d136c7642b7a.jpg',
+ url: 'https://www.designerwallcoverings.com/products/venezia-glass-beads-wall-paper-gold-gls-111-glass-beads-gold' },
+ { title: 'Venezia Glass Beads — Silver',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/files/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver-clean.jpg',
+ url: 'https://www.designerwallcoverings.com/products/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver' },
+ { title: 'Sexy Sequin — Pink',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e7ad686e70a8478d4c42390e86b37863.jpg',
+ url: 'https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-miami-beach-gls-107' },
+ { title: 'Hollywood Glamour Sequin — Silver Multi-Color',
+ img: 'https://cdn.shopify.com/s/files/1/0015/4117/7456/files/glm-still-GLM-52009-SAMPLE.jpg',
+ url: 'https://www.designerwallcoverings.com/products/hollywood-glamour-sequin-silver-multi-color-glm-52009' },
+];
+
+const SUBJECT = 'By invitation: the Glitter & Sequin collection';
+const PREHEADER = 'A private release of shimmer, sequin, and metallic, reserved for our trade list first.';
+
+const gridCells = GRID.map((p) => `
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="${p.url}" style="text-decoration:none;color:${BRAND.ink};">
+ <img src="${p.img}" width="252" alt="${p.title}"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:${BRAND.body};font-size:12px;line-height:1.4;color:${BRAND.ink};padding:10px 2px 0;letter-spacing:.2px;">${p.title}</div>
+ </a>
+ </td>`);
+
+// pair grid cells into rows of 2
+const gridRows = [];
+for (let i = 0; i < gridCells.length; i += 2) {
+ gridRows.push(`<tr>${gridCells[i] || ''}${gridCells[i + 1] || '<td width="50%"></td>'}</tr>`);
+}
+
+const html = `<!DOCTYPE html>
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="color-scheme" content="light" />
+ <title>${SUBJECT}</title>
+ <style>
+ @media only screen and (max-width:600px){
+ .container{width:100% !important;}
+ .px{padding-left:20px !important;padding-right:20px !important;}
+ .h1{font-size:34px !important;}
+ }
+ a{color:${BRAND.gold};}
+ </style>
+</head>
+<body style="margin:0;padding:0;background:${BRAND.cream};">
+ <!-- preheader (hidden preview text) -->
+ <div style="display:none;max-height:0;overflow:hidden;opacity:0;color:${BRAND.cream};font-size:1px;line-height:1px;">${PREHEADER} ‌ ‌ ‌ ‌ ‌ ‌</div>
+
+ <table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="background:${BRAND.cream};">
+ <tr><td align="center" style="padding:28px 12px;">
+
+ <table role="presentation" class="container" width="600" cellpadding="0" cellspacing="0" style="width:600px;max-width:600px;background:${BRAND.paper};border:1px solid #e7ddcd;">
+
+ <!-- Wordmark header -->
+ <tr>
+ <td align="center" class="px" style="padding:34px 40px 10px;">
+ <a href="${SITE}" style="text-decoration:none;">
+ <div style="font-family:${BRAND.display};font-size:26px;letter-spacing:4px;color:${BRAND.ink};text-transform:uppercase;font-weight:600;">Designer Wallcoverings</div>
+ </a>
+ <div style="height:1px;background:${BRAND.gold};width:52px;margin:14px auto 0;"></div>
+ <div style="font-family:${BRAND.body};font-size:10px;letter-spacing:3px;color:${BRAND.gold};text-transform:uppercase;padding-top:14px;">Private Release · By Invitation</div>
+ </td>
+ </tr>
+
+ <!-- Headline -->
+ <tr>
+ <td align="center" class="px" style="padding:16px 40px 6px;">
+ <div class="h1" style="font-family:${BRAND.display};font-size:44px;line-height:1.05;color:${BRAND.ink};font-weight:600;">Glitter & Sequin</div>
+ <div style="font-family:${BRAND.body};font-size:14px;line-height:1.6;color:${BRAND.muted};padding-top:14px;max-width:420px;margin:0 auto;">A private release of shimmer, sequin, and metallic, reserved for our trade list first.</div>
+ </td>
+ </tr>
+
+ <!-- Hero image -->
+ <tr>
+ <td align="center" class="px" style="padding:22px 40px 6px;">
+ <a href="${HERO.url}" style="text-decoration:none;">
+ <img src="${HERO.img}" width="520" alt="${HERO.title}" style="width:100%;max-width:520px;height:auto;display:block;border:0;border-radius:2px;" />
+ </a>
+ <div style="font-family:${BRAND.body};font-size:11px;letter-spacing:.4px;color:${BRAND.muted};padding-top:8px;">${HERO.title}</div>
+ </td>
+ </tr>
+
+ <!-- Body copy — exclusivity -->
+ <tr>
+ <td class="px" style="padding:22px 48px 6px;">
+ <p style="font-family:${BRAND.body};font-size:15px;line-height:1.75;color:${BRAND.ink};margin:0 0 16px;">
+ Some surfaces are not meant for the open floor. The Glitter & Sequin collection is a private release: hand-selected shimmer, sequin, and beaded metallic wallcoverings we are opening to our trade list before anyone else. These are the pieces we hold back for a jewel-box powder room, a private dining room, a client who wants a wall to catch the light and keep it.
+ </p>
+ <p style="font-family:${BRAND.body};font-size:15px;line-height:1.75;color:${BRAND.ink};margin:0 0 8px;">
+ Allocation is limited. Each pattern is chosen by hand, and several colorways are held for our designers and members first. You will not find this edit merchandised anywhere else on the site.
+ </p>
+ </td>
+ </tr>
+
+ <!-- CTA -->
+ <tr>
+ <td align="center" style="padding:14px 40px 22px;">
+ <table role="presentation" cellpadding="0" cellspacing="0"><tr>
+ <td align="center" bgcolor="${BRAND.ink}" style="border-radius:2px;">
+ <a href="${COLLECTION_URL}" style="display:inline-block;font-family:${BRAND.body};font-size:12px;letter-spacing:2px;text-transform:uppercase;color:${BRAND.cream};text-decoration:none;padding:15px 34px;">See the private collection</a>
+ </td>
+ </tr></table>
+ </td>
+ </tr>
+
+ <!-- Product grid -->
+ <tr>
+ <td class="px" style="padding:6px 32px 8px;">
+ <div style="font-family:${BRAND.display};font-size:20px;color:${BRAND.ink};text-align:center;padding-bottom:6px;">The edit</div>
+ <table role="presentation" width="100%" cellpadding="0" cellspacing="0">
+ ${gridRows.join('\n ')}
+ </table>
+ </td>
+ </tr>
+
+ <!-- Sensory line -->
+ <tr>
+ <td class="px" style="padding:18px 48px 6px;">
+ <p style="font-family:${BRAND.body};font-size:14px;line-height:1.7;color:${BRAND.muted};margin:0;text-align:center;font-style:italic;">
+ Sequins that read like light: sequin in silver and disco pink, Venezia glass beads pressed by hand, metallic that shifts as you cross the room.
+ </p>
+ </td>
+ </tr>
+
+ <!-- Secondary CTAs -->
+ <tr>
+ <td align="center" class="px" style="padding:18px 40px 30px;">
+ <a href="${COLLECTION_URL}" style="font-family:${BRAND.body};font-size:12px;letter-spacing:1px;color:${BRAND.gold};text-decoration:none;">See the collection</a>
+ <span style="color:#d8ccb8;padding:0 8px;">·</span>
+ <a href="${SITE}/pages/samples" style="font-family:${BRAND.body};font-size:12px;letter-spacing:1px;color:${BRAND.gold};text-decoration:none;">Request memo samples</a>
+ <span style="color:#d8ccb8;padding:0 8px;">·</span>
+ <a href="${SITE}/pages/trade" style="font-family:${BRAND.body};font-size:12px;letter-spacing:1px;color:${BRAND.gold};text-decoration:none;">Book a trade consultation</a>
+ </td>
+ </tr>
+
+ <!-- CAN-SPAM footer -->
+ <tr>
+ <td style="background:${BRAND.cream};border-top:1px solid #e7ddcd;padding:24px 40px 30px;">
+ <div style="font-family:${BRAND.display};font-size:15px;letter-spacing:2px;color:${BRAND.ink};text-transform:uppercase;text-align:center;">Designer Wallcoverings</div>
+ <p style="font-family:${BRAND.body};font-size:11px;line-height:1.7;color:${BRAND.muted};text-align:center;margin:10px 0 0;">
+ ${ADDRESS}<br/>
+ ${PHONE} · <a href="mailto:info@glitterwalls.com" style="color:${BRAND.muted};text-decoration:underline;">info@glitterwalls.com</a>
+ </p>
+ <p style="font-family:${BRAND.body};font-size:11px;line-height:1.7;color:${BRAND.muted};text-align:center;margin:12px 0 0;">
+ You are receiving this because you are on the Designer Wallcoverings trade and design list.<br/>
+ <a href="[[trackingUnsubscribe]]" style="color:${BRAND.muted};text-decoration:underline;">Unsubscribe</a>
+ ·
+ <a href="[[updateProfile]]" style="color:${BRAND.muted};text-decoration:underline;">Update your preferences</a>
+ </p>
+ </td>
+ </tr>
+
+ </table>
+ </td></tr>
+ </table>
+</body>
+</html>`;
+
+writeFileSync(new URL('./campaign.html', import.meta.url), html);
+
+const payload = {
+ name: 'Glitter & Sequin — Exclusive Collection',
+ subject: SUBJECT,
+ from: 'info@designerwallcoverings.com',
+ html,
+};
+writeFileSync(new URL('./draft-payload.json', import.meta.url), JSON.stringify(payload, null, 2));
+console.log('wrote campaign.html', html.length, 'bytes; draft-payload.json', JSON.stringify(payload).length, 'bytes');
+console.log('subject:', SUBJECT);
+console.log('preheader:', PREHEADER);
diff --git a/drafts/glitter-sequin-exclusive/campaign.html b/drafts/glitter-sequin-exclusive/campaign.html
new file mode 100644
index 0000000..47cad70
--- /dev/null
+++ b/drafts/glitter-sequin-exclusive/campaign.html
@@ -0,0 +1,174 @@
+<!DOCTYPE html>
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="color-scheme" content="light" />
+ <title>By invitation: the Glitter & Sequin collection</title>
+ <style>
+ @media only screen and (max-width:600px){
+ .container{width:100% !important;}
+ .px{padding-left:20px !important;padding-right:20px !important;}
+ .h1{font-size:34px !important;}
+ }
+ a{color:#b8925a;}
+ </style>
+</head>
+<body style="margin:0;padding:0;background:#f4efe7;">
+ <!-- preheader (hidden preview text) -->
+ <div style="display:none;max-height:0;overflow:hidden;opacity:0;color:#f4efe7;font-size:1px;line-height:1px;">A private release of shimmer, sequin, and metallic, reserved for our trade list first. ‌ ‌ ‌ ‌ ‌ ‌</div>
+
+ <table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="background:#f4efe7;">
+ <tr><td align="center" style="padding:28px 12px;">
+
+ <table role="presentation" class="container" width="600" cellpadding="0" cellspacing="0" style="width:600px;max-width:600px;background:#ffffff;border:1px solid #e7ddcd;">
+
+ <!-- Wordmark header -->
+ <tr>
+ <td align="center" class="px" style="padding:34px 40px 10px;">
+ <a href="https://www.designerwallcoverings.com" style="text-decoration:none;">
+ <div style="font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:26px;letter-spacing:4px;color:#14110f;text-transform:uppercase;font-weight:600;">Designer Wallcoverings</div>
+ </a>
+ <div style="height:1px;background:#b8925a;width:52px;margin:14px auto 0;"></div>
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:10px;letter-spacing:3px;color:#b8925a;text-transform:uppercase;padding-top:14px;">Private Release · By Invitation</div>
+ </td>
+ </tr>
+
+ <!-- Headline -->
+ <tr>
+ <td align="center" class="px" style="padding:16px 40px 6px;">
+ <div class="h1" style="font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:44px;line-height:1.05;color:#14110f;font-weight:600;">Glitter & Sequin</div>
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:14px;line-height:1.6;color:#6b6259;padding-top:14px;max-width:420px;margin:0 auto;">A private release of shimmer, sequin, and metallic, reserved for our trade list first.</div>
+ </td>
+ </tr>
+
+ <!-- Hero image -->
+ <tr>
+ <td align="center" class="px" style="padding:22px 40px 6px;">
+ <a href="https://www.designerwallcoverings.com/products/hollywood-sequin-wallcoverings-hsw-51526" style="text-decoration:none;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96899f7e4f23e376b65ddb07bbdd3af7.jpg?v=1572309253" width="520" alt="Hollywood Sequin — White" style="width:100%;max-width:520px;height:auto;display:block;border:0;border-radius:2px;" />
+ </a>
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;letter-spacing:.4px;color:#6b6259;padding-top:8px;">Hollywood Sequin — White</div>
+ </td>
+ </tr>
+
+ <!-- Body copy — exclusivity -->
+ <tr>
+ <td class="px" style="padding:22px 48px 6px;">
+ <p style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:15px;line-height:1.75;color:#14110f;margin:0 0 16px;">
+ Some surfaces are not meant for the open floor. The Glitter & Sequin collection is a private release: hand-selected shimmer, sequin, and beaded metallic wallcoverings we are opening to our trade list before anyone else. These are the pieces we hold back for a jewel-box powder room, a private dining room, a client who wants a wall to catch the light and keep it.
+ </p>
+ <p style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:15px;line-height:1.75;color:#14110f;margin:0 0 8px;">
+ Allocation is limited. Each pattern is chosen by hand, and several colorways are held for our designers and members first. You will not find this edit merchandised anywhere else on the site.
+ </p>
+ </td>
+ </tr>
+
+ <!-- CTA -->
+ <tr>
+ <td align="center" style="padding:14px 40px 22px;">
+ <table role="presentation" cellpadding="0" cellspacing="0"><tr>
+ <td align="center" bgcolor="#14110f" style="border-radius:2px;">
+ <a href="https://www.designerwallcoverings.com/collections/glitter-wallpaper" style="display:inline-block;font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#f4efe7;text-decoration:none;padding:15px 34px;">See the private collection</a>
+ </td>
+ </tr></table>
+ </td>
+ </tr>
+
+ <!-- Product grid -->
+ <tr>
+ <td class="px" style="padding:6px 32px 8px;">
+ <div style="font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:20px;color:#14110f;text-align:center;padding-bottom:6px;">The edit</div>
+ <table role="presentation" width="100%" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-silver-mirror-gls-102" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sexy-sequin-wallcovering--silver-mirror_161dfd81-3134-498e-a6cf-9f7188cf989b.jpg" width="252" alt="Sexy Sequin — Silver"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Sexy Sequin — Silver</div>
+ </a>
+ </td>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/sequin-wall-paper-black-gls-417" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/products/371c9614029653c869b8980b744600fa.jpg" width="252" alt="Sequin — Black"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Sequin — Black</div>
+ </a>
+ </td></tr>
+ <tr>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/venezia-glass-beads-wall-paper-gold-gls-111-glass-beads-gold" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/files/936928828518ebf09a70d136c7642b7a.jpg" width="252" alt="Venezia Glass Beads — Gold"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Venezia Glass Beads — Gold</div>
+ </a>
+ </td>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/files/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver-clean.jpg" width="252" alt="Venezia Glass Beads — Silver"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Venezia Glass Beads — Silver</div>
+ </a>
+ </td></tr>
+ <tr>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-miami-beach-gls-107" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e7ad686e70a8478d4c42390e86b37863.jpg" width="252" alt="Sexy Sequin — Pink"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Sexy Sequin — Pink</div>
+ </a>
+ </td>
+ <td width="50%" valign="top" style="padding:8px;">
+ <a href="https://www.designerwallcoverings.com/products/hollywood-glamour-sequin-silver-multi-color-glm-52009" style="text-decoration:none;color:#14110f;">
+ <img src="https://cdn.shopify.com/s/files/1/0015/4117/7456/files/glm-still-GLM-52009-SAMPLE.jpg" width="252" alt="Hollywood Glamour Sequin — Silver Multi-Color"
+ style="width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;" />
+ <div style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;">Hollywood Glamour Sequin — Silver Multi-Color</div>
+ </a>
+ </td></tr>
+ </table>
+ </td>
+ </tr>
+
+ <!-- Sensory line -->
+ <tr>
+ <td class="px" style="padding:18px 48px 6px;">
+ <p style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:14px;line-height:1.7;color:#6b6259;margin:0;text-align:center;font-style:italic;">
+ Sequins that read like light: sequin in silver and disco pink, Venezia glass beads pressed by hand, metallic that shifts as you cross the room.
+ </p>
+ </td>
+ </tr>
+
+ <!-- Secondary CTAs -->
+ <tr>
+ <td align="center" class="px" style="padding:18px 40px 30px;">
+ <a href="https://www.designerwallcoverings.com/collections/glitter-wallpaper" style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;">See the collection</a>
+ <span style="color:#d8ccb8;padding:0 8px;">·</span>
+ <a href="https://www.designerwallcoverings.com/pages/samples" style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;">Request memo samples</a>
+ <span style="color:#d8ccb8;padding:0 8px;">·</span>
+ <a href="https://www.designerwallcoverings.com/pages/trade" style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;">Book a trade consultation</a>
+ </td>
+ </tr>
+
+ <!-- CAN-SPAM footer -->
+ <tr>
+ <td style="background:#f4efe7;border-top:1px solid #e7ddcd;padding:24px 40px 30px;">
+ <div style="font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:15px;letter-spacing:2px;color:#14110f;text-transform:uppercase;text-align:center;">Designer Wallcoverings</div>
+ <p style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;line-height:1.7;color:#6b6259;text-align:center;margin:10px 0 0;">
+ 15442 Ventura Blvd #102, Sherman Oaks, CA 91403<br/>
+ (888) 373-4564 · <a href="mailto:info@glitterwalls.com" style="color:#6b6259;text-decoration:underline;">info@glitterwalls.com</a>
+ </p>
+ <p style="font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;line-height:1.7;color:#6b6259;text-align:center;margin:12px 0 0;">
+ You are receiving this because you are on the Designer Wallcoverings trade and design list.<br/>
+ <a href="[[trackingUnsubscribe]]" style="color:#6b6259;text-decoration:underline;">Unsubscribe</a>
+ ·
+ <a href="[[updateProfile]]" style="color:#6b6259;text-decoration:underline;">Update your preferences</a>
+ </p>
+ </td>
+ </tr>
+
+ </table>
+ </td></tr>
+ </table>
+</body>
+</html>
\ No newline at end of file
diff --git a/drafts/glitter-sequin-exclusive/draft-payload.json b/drafts/glitter-sequin-exclusive/draft-payload.json
new file mode 100644
index 0000000..40a41e3
--- /dev/null
+++ b/drafts/glitter-sequin-exclusive/draft-payload.json
@@ -0,0 +1,6 @@
+{
+ "name": "Glitter & Sequin — Exclusive Collection",
+ "subject": "By invitation: the Glitter & Sequin collection",
+ "from": "info@designerwallcoverings.com",
+ "html": "<!DOCTYPE html>\n<html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n <meta name=\"color-scheme\" content=\"light\" />\n <title>By invitation: the Glitter & Sequin collection</title>\n <style>\n @media only screen and (max-width:600px){\n .container{width:100% !important;}\n .px{padding-left:20px !important;padding-right:20px !important;}\n .h1{font-size:34px !important;}\n }\n a{color:#b8925a;}\n </style>\n</head>\n<body style=\"margin:0;padding:0;background:#f4efe7;\">\n <!-- preheader (hidden preview text) -->\n <div style=\"display:none;max-height:0;overflow:hidden;opacity:0;color:#f4efe7;font-size:1px;line-height:1px;\">A private release of shimmer, sequin, and metallic, reserved for our trade list first. ‌ ‌ ‌ ‌ ‌ ‌</div>\n\n <table role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"background:#f4efe7;\">\n <tr><td align=\"center\" style=\"padding:28px 12px;\">\n\n <table role=\"presentation\" class=\"container\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;max-width:600px;background:#ffffff;border:1px solid #e7ddcd;\">\n\n <!-- Wordmark header -->\n <tr>\n <td align=\"center\" class=\"px\" style=\"padding:34px 40px 10px;\">\n <a href=\"https://www.designerwallcoverings.com\" style=\"text-decoration:none;\">\n <div style=\"font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:26px;letter-spacing:4px;color:#14110f;text-transform:uppercase;font-weight:600;\">Designer Wallcoverings</div>\n </a>\n <div style=\"height:1px;background:#b8925a;width:52px;margin:14px auto 0;\"></div>\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:10px;letter-spacing:3px;color:#b8925a;text-transform:uppercase;padding-top:14px;\">Private Release · By Invitation</div>\n </td>\n </tr>\n\n <!-- Headline -->\n <tr>\n <td align=\"center\" class=\"px\" style=\"padding:16px 40px 6px;\">\n <div class=\"h1\" style=\"font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:44px;line-height:1.05;color:#14110f;font-weight:600;\">Glitter & Sequin</div>\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:14px;line-height:1.6;color:#6b6259;padding-top:14px;max-width:420px;margin:0 auto;\">A private release of shimmer, sequin, and metallic, reserved for our trade list first.</div>\n </td>\n </tr>\n\n <!-- Hero image -->\n <tr>\n <td align=\"center\" class=\"px\" style=\"padding:22px 40px 6px;\">\n <a href=\"https://www.designerwallcoverings.com/products/hollywood-sequin-wallcoverings-hsw-51526\" style=\"text-decoration:none;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96899f7e4f23e376b65ddb07bbdd3af7.jpg?v=1572309253\" width=\"520\" alt=\"Hollywood Sequin — White\" style=\"width:100%;max-width:520px;height:auto;display:block;border:0;border-radius:2px;\" />\n </a>\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;letter-spacing:.4px;color:#6b6259;padding-top:8px;\">Hollywood Sequin — White</div>\n </td>\n </tr>\n\n <!-- Body copy — exclusivity -->\n <tr>\n <td class=\"px\" style=\"padding:22px 48px 6px;\">\n <p style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:15px;line-height:1.75;color:#14110f;margin:0 0 16px;\">\n Some surfaces are not meant for the open floor. The Glitter & Sequin collection is a private release: hand-selected shimmer, sequin, and beaded metallic wallcoverings we are opening to our trade list before anyone else. These are the pieces we hold back for a jewel-box powder room, a private dining room, a client who wants a wall to catch the light and keep it.\n </p>\n <p style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:15px;line-height:1.75;color:#14110f;margin:0 0 8px;\">\n Allocation is limited. Each pattern is chosen by hand, and several colorways are held for our designers and members first. You will not find this edit merchandised anywhere else on the site.\n </p>\n </td>\n </tr>\n\n <!-- CTA -->\n <tr>\n <td align=\"center\" style=\"padding:14px 40px 22px;\">\n <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\"><tr>\n <td align=\"center\" bgcolor=\"#14110f\" style=\"border-radius:2px;\">\n <a href=\"https://www.designerwallcoverings.com/collections/glitter-wallpaper\" style=\"display:inline-block;font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#f4efe7;text-decoration:none;padding:15px 34px;\">See the private collection</a>\n </td>\n </tr></table>\n </td>\n </tr>\n\n <!-- Product grid -->\n <tr>\n <td class=\"px\" style=\"padding:6px 32px 8px;\">\n <div style=\"font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:20px;color:#14110f;text-align:center;padding-bottom:6px;\">The edit</div>\n <table role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-silver-mirror-gls-102\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sexy-sequin-wallcovering--silver-mirror_161dfd81-3134-498e-a6cf-9f7188cf989b.jpg\" width=\"252\" alt=\"Sexy Sequin — Silver\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Sexy Sequin — Silver</div>\n </a>\n </td>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/sequin-wall-paper-black-gls-417\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/371c9614029653c869b8980b744600fa.jpg\" width=\"252\" alt=\"Sequin — Black\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Sequin — Black</div>\n </a>\n </td></tr>\n <tr>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/venezia-glass-beads-wall-paper-gold-gls-111-glass-beads-gold\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/936928828518ebf09a70d136c7642b7a.jpg\" width=\"252\" alt=\"Venezia Glass Beads — Gold\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Venezia Glass Beads — Gold</div>\n </a>\n </td>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/venezia-tm-glass-beads-silver-gls-112-glass-beads-silver-clean.jpg\" width=\"252\" alt=\"Venezia Glass Beads — Silver\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Venezia Glass Beads — Silver</div>\n </a>\n </td></tr>\n <tr>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/sexy-sequin-wallcovering-miami-beach-gls-107\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e7ad686e70a8478d4c42390e86b37863.jpg\" width=\"252\" alt=\"Sexy Sequin — Pink\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Sexy Sequin — Pink</div>\n </a>\n </td>\n <td width=\"50%\" valign=\"top\" style=\"padding:8px;\">\n <a href=\"https://www.designerwallcoverings.com/products/hollywood-glamour-sequin-silver-multi-color-glm-52009\" style=\"text-decoration:none;color:#14110f;\">\n <img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/glm-still-GLM-52009-SAMPLE.jpg\" width=\"252\" alt=\"Hollywood Glamour Sequin — Silver Multi-Color\"\n style=\"width:100%;max-width:252px;height:auto;display:block;border:0;border-radius:2px;\" />\n <div style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;line-height:1.4;color:#14110f;padding:10px 2px 0;letter-spacing:.2px;\">Hollywood Glamour Sequin — Silver Multi-Color</div>\n </a>\n </td></tr>\n </table>\n </td>\n </tr>\n\n <!-- Sensory line -->\n <tr>\n <td class=\"px\" style=\"padding:18px 48px 6px;\">\n <p style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:14px;line-height:1.7;color:#6b6259;margin:0;text-align:center;font-style:italic;\">\n Sequins that read like light: sequin in silver and disco pink, Venezia glass beads pressed by hand, metallic that shifts as you cross the room.\n </p>\n </td>\n </tr>\n\n <!-- Secondary CTAs -->\n <tr>\n <td align=\"center\" class=\"px\" style=\"padding:18px 40px 30px;\">\n <a href=\"https://www.designerwallcoverings.com/collections/glitter-wallpaper\" style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;\">See the collection</a>\n <span style=\"color:#d8ccb8;padding:0 8px;\">·</span>\n <a href=\"https://www.designerwallcoverings.com/pages/samples\" style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;\">Request memo samples</a>\n <span style=\"color:#d8ccb8;padding:0 8px;\">·</span>\n <a href=\"https://www.designerwallcoverings.com/pages/trade\" style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:12px;letter-spacing:1px;color:#b8925a;text-decoration:none;\">Book a trade consultation</a>\n </td>\n </tr>\n\n <!-- CAN-SPAM footer -->\n <tr>\n <td style=\"background:#f4efe7;border-top:1px solid #e7ddcd;padding:24px 40px 30px;\">\n <div style=\"font-family:'Cormorant Garamond', Georgia, 'Times New Roman', serif;font-size:15px;letter-spacing:2px;color:#14110f;text-transform:uppercase;text-align:center;\">Designer Wallcoverings</div>\n <p style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;line-height:1.7;color:#6b6259;text-align:center;margin:10px 0 0;\">\n 15442 Ventura Blvd #102, Sherman Oaks, CA 91403<br/>\n (888) 373-4564 · <a href=\"mailto:info@glitterwalls.com\" style=\"color:#6b6259;text-decoration:underline;\">info@glitterwalls.com</a>\n </p>\n <p style=\"font-family:Inter, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;font-size:11px;line-height:1.7;color:#6b6259;text-align:center;margin:12px 0 0;\">\n You are receiving this because you are on the Designer Wallcoverings trade and design list.<br/>\n <a href=\"[[trackingUnsubscribe]]\" style=\"color:#6b6259;text-decoration:underline;\">Unsubscribe</a>\n · \n <a href=\"[[updateProfile]]\" style=\"color:#6b6259;text-decoration:underline;\">Update your preferences</a>\n </p>\n </td>\n </tr>\n\n </table>\n </td></tr>\n </table>\n</body>\n</html>"
+}
\ No newline at end of file
diff --git a/drafts/glitter-sequin-exclusive/draft-response.json b/drafts/glitter-sequin-exclusive/draft-response.json
new file mode 100644
index 0000000..796d964
--- /dev/null
+++ b/drafts/glitter-sequin-exclusive/draft-response.json
@@ -0,0 +1 @@
+{"mock":true,"ok":true,"draft_id":"mock-draft-mtj26jxc","status":"DRAFT","message":"Draft “Glitter & Sequin — Exclusive Collection” saved (mock). Not sent.","compliance":{"ok":true,"hasUnsub":true,"hasAddress":true,"missing":[]},"subjectScan":{"ok":true,"hard":[],"soft":[],"flags":[]},"fromScan":{"ok":true,"fromEmail":"info@designerwallcoverings.com","reason":null}}
\ No newline at end of file
← f9cdfa0 auto-data-snapshot: 2026-09-01T12:16:45 (1 data files) — pub
·
back to Marketing Command Center
·
auto-data-snapshot: 2026-09-01T12:55:30 (1 data files) — pub a162aa2 →