From 79ae38db6024aaab864129e7b0855fc77b243d0a Mon Sep 17 00:00:00 2001 From: louispaulb Date: Thu, 21 May 2026 22:36:35 -0400 Subject: [PATCH] feat(campaigns): MJML canonical templates + test-send button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two big moves: 1. Promote MJML to the canonical template format - Move gift-email-fr-mjml.{mjml,html} → gift-email-fr.{mjml,html} - Create gift-email-en.mjml (English translation of FR MJML) - Compile EN MJML → gift-email-en.html - Remove obsolete variants: • gift-email-fr-simple.html (now replaced by MJML) • gift-email-en-simple.html (same) • gift-email-fr-mjml.* (renamed to canonical) - The old gift-email-fr.html (rich-with-merchant-grid version) is backed up as gift-email-fr.legacy-rich.html.bak — kept on disk for reference but not in the editable list. - EDITABLE_TEMPLATES is now just ['gift-email-fr', 'gift-email-en'], both backed by .mjml source + .html auto-compiled output. 2. Add "Envoyer un test" feature Backend: - POST /campaigns/templates/:name/test-send accepts { to, vars, from?, subject? }. Reads compiled .html, renders Mustache vars, sends via Mailjet through email.sendEmail with X-MJ-CustomID "test-send::" so webhook events for tests are identifiable. Returns { sent, to, from, message_id, bytes }. - Default vars are sensible: firstname="Louis", amount="60 $", gift_url="https://gft.link/TEST123", etc. User overrides any via the request body. Frontend (TemplateEditorPage): - Toolbar button "Envoyer un test" (orange) — opens a dialog. - Dialog has email input + subject + 7 variable inputs (firstname, lastname, amount, commitment_months, gift_url, description, expiry) with sensible defaults. - "Dirty" banner warning: if the user has unsaved changes, the test will use the LAST SAVED version (so save first to test the latest). Mentions explicitly in card footer. - On send: live notification with the message_id + byte count. Errors surface clearly. Verified live in prod: POST /campaigns/templates/gift-email-fr/test-send → 200, message_id returned, ~32 KB rendered MJML→HTML output, sent from TARGO (Mailjet-validated sender). Co-Authored-By: Claude Opus 4.7 --- apps/ops/src/api/campaigns.js | 9 + .../campaigns/pages/TemplateEditorPage.vue | 89 +- .../templates/gift-email-en-simple.html | 155 --- .../campaigns/templates/gift-email-en.html | 1116 +++++++++++----- .../campaigns/templates/gift-email-en.mjml | 132 ++ .../templates/gift-email-fr-mjml.html | 814 ------------ .../templates/gift-email-fr-simple.html | 155 --- .../campaigns/templates/gift-email-fr.html | 1138 ++++++++++++----- ...-email-fr-mjml.mjml => gift-email-fr.mjml} | 0 services/targo-hub/lib/campaigns.js | 66 +- .../templates/gift-email-en-simple.html | 155 --- .../targo-hub/templates/gift-email-en.html | 1116 +++++++++++----- .../targo-hub/templates/gift-email-en.mjml | 132 ++ .../templates/gift-email-fr-mjml.html | 814 ------------ .../templates/gift-email-fr-simple.html | 155 --- .../targo-hub/templates/gift-email-fr.html | 1138 ++++++++++++----- .../gift-email-fr.legacy-rich.html.bak | 362 ++++++ ...-email-fr-mjml.mjml => gift-email-fr.mjml} | 0 18 files changed, 3931 insertions(+), 3615 deletions(-) delete mode 100644 scripts/campaigns/templates/gift-email-en-simple.html create mode 100644 scripts/campaigns/templates/gift-email-en.mjml delete mode 100644 scripts/campaigns/templates/gift-email-fr-mjml.html delete mode 100644 scripts/campaigns/templates/gift-email-fr-simple.html rename scripts/campaigns/templates/{gift-email-fr-mjml.mjml => gift-email-fr.mjml} (100%) delete mode 100644 services/targo-hub/templates/gift-email-en-simple.html create mode 100644 services/targo-hub/templates/gift-email-en.mjml delete mode 100644 services/targo-hub/templates/gift-email-fr-mjml.html delete mode 100644 services/targo-hub/templates/gift-email-fr-simple.html create mode 100644 services/targo-hub/templates/gift-email-fr.legacy-rich.html.bak rename services/targo-hub/templates/{gift-email-fr-mjml.mjml => gift-email-fr.mjml} (100%) diff --git a/apps/ops/src/api/campaigns.js b/apps/ops/src/api/campaigns.js index c1e3f38..979c2ac 100644 --- a/apps/ops/src/api/campaigns.js +++ b/apps/ops/src/api/campaigns.js @@ -124,6 +124,15 @@ export function previewTemplate (name, { html, vars } = {}) { }) } +// Send ONE rendered email to a specific address for visual QA. +// Pass { to, vars, from?, subject? } — defaults filled in server-side. +export function testSendTemplate (name, { to, vars, from, subject } = {}) { + return hubFetch(`/campaigns/templates/${encodeURIComponent(name)}/test-send`, { + method: 'POST', + body: { to, vars, from, subject }, + }) +} + /** * Returns the URL for the SSE channel of one campaign. The Hub broadcasts on * topic `campaign:` so we subscribe to that single topic. Use with: diff --git a/apps/ops/src/modules/campaigns/pages/TemplateEditorPage.vue b/apps/ops/src/modules/campaigns/pages/TemplateEditorPage.vue index 869833c..dffd7d9 100644 --- a/apps/ops/src/modules/campaigns/pages/TemplateEditorPage.vue +++ b/apps/ops/src/modules/campaigns/pages/TemplateEditorPage.vue @@ -17,6 +17,9 @@ { label: 'HTML', value: 'html' }, { label: 'Aperçu', value: 'preview' }, ]" dense unelevated toggle-color="primary" /> + + Envoie un courriel réel à une adresse de test avec des variables personnalisées + Annuler les changements non sauvegardés @@ -24,6 +27,51 @@ :loading="saving" :disable="!dirty" @click="save" /> + + + + + +
Envoyer un test du courriel
+ + +
+ + + + Tu as des changements non sauvegardés. Sauvegarde avant d'envoyer pour tester la dernière version. + + + +
Variables (pour le rendu)
+
+ + + + + + + +
+
+ +
+ Envoyé via Mailjet depuis TARGO <support@targointernet.com> (sender validé). + Le rendu utilisera le HTML compilé actuellement sauvegardé sur disque (pas les modifs non-sauvegardées). +
+
+ + + + +
+
+ @@ -72,7 +120,7 @@ import { ref, computed, onMounted, onBeforeUnmount, watch, nextTick } from 'vue' import { useRoute, useRouter } from 'vue-router' import { useQuasar } from 'quasar' import { listTemplates, getTemplate, saveTemplate, previewTemplate, - listAssets, uploadAsset } from 'src/api/campaigns' + testSendTemplate, listAssets, uploadAsset } from 'src/api/campaigns' import grapesjs from 'grapesjs' import 'grapesjs/dist/css/grapes.min.css' import presetNewsletter from 'grapesjs-preset-newsletter' @@ -97,6 +145,45 @@ const blankCanvas = ref(false) // true after clicking "Vide" — hides the "us const templateFormat = ref('html') // 'mjml' | 'html' — drives editor plugin choice + save body shape const mjmlSource = ref('') // when format=mjml, this holds the MJML source separately from the rendered HTML +// ── Test-send dialog state ────────────────────────────────────────────────── +const testSendOpen = ref(false) +const testSending = ref(false) +const testSendForm = ref({ + to: 'louis@targo.ca', + subject: '[TEST] Aperçu du courriel TARGO', + vars: { + firstname: 'Louis', + lastname: 'Test', + amount: '60 $', + commitment_months: '3', + gift_url: 'https://gft.link/TEST123', + description: '123 Rue de Test, Ste-Clotilde', + expiry: '31 décembre 2026', + }, +}) + +async function doTestSend () { + testSending.value = true + try { + const r = await testSendTemplate(currentName.value, { + to: testSendForm.value.to.trim(), + subject: testSendForm.value.subject, + vars: testSendForm.value.vars, + }) + $q.notify({ + type: 'positive', + message: `Test envoyé à ${r.to}`, + caption: `${r.bytes} octets via ${r.from}`, + timeout: 5000, + }) + testSendOpen.value = false + } catch (e) { + $q.notify({ type: 'negative', message: 'Échec envoi test: ' + e.message, timeout: 6000 }) + } finally { + testSending.value = false + } +} + // Derive the editor's spell-check language from the template name suffix. // gift-email-fr → fr, gift-email-en → en, etc. Browser's built-in dictionary // (Chrome/Safari/Firefox) uses this to flag typos in the correct language. diff --git a/scripts/campaigns/templates/gift-email-en-simple.html b/scripts/campaigns/templates/gift-email-en-simple.html deleted file mode 100644 index 69b7b34..0000000 --- a/scripts/campaigns/templates/gift-email-en-simple.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -An exclusive offer from TARGO - - - - - - - - - - - - - -
- - - - -
- TARGO -
- - - - -
-

Hi {{firstname}},

-

- Just like you, we love stable connections and lasting relationships. -

-

- Summer's here, and so is your - limited-time exclusive offer: -

-
- - - - -
- - -
-

🎁 {{amount}} at hundreds of brands

-

⚡ Instant on activation

-

🤝 Stay with us {{commitment_months}}+ months

-
-
- - - - -
- ✅ Option 1 -
- - - - -
- - 🎁  {{amount}} - Redeem my gift card - Pick your brand on Giftbit → - -
- - - - -
-

- 🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable. -

-
- - - - -
- ⏭️ Option 2 -
- - - -
-

- Do nothing. Your monthly subscription continues as usual — no commitment, no gift card. -

-
- - {{#expiry}} - - - -
-

- ⏰ This offer expires on {{expiry}}. -

-
- {{/expiry}} - - - - -
-

🤝 Thanks for helping our regional economy thrive!

-

The TARGO team

-
- - - - -
-

- You're getting this email because you're a TARGO customer at - {{description}}.
- Got a question? Write to - support@targo.ca - or call - 514 448-0773. - Support 7 days/week. -

-
- - - - -
- TARGO -

- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · All rights reserved. -

-
- -
- - - diff --git a/scripts/campaigns/templates/gift-email-en.html b/scripts/campaigns/templates/gift-email-en.html index b87c591..b40f577 100644 --- a/scripts/campaigns/templates/gift-email-en.html +++ b/scripts/campaigns/templates/gift-email-en.html @@ -1,355 +1,799 @@ - - - - - -An exclusive offer from TARGO - - - - - - - - + + + + An exclusive offer from TARGO + + + + + + + + + + + + + + - - - - -
+ + + + + + + + + + + + + + + +
Just like you, we love stable connections and lasting relationships.
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - + +
- TARGO + + + TARGO +
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ +
Hi {{firstname}},
+ +
+ +
Just like you, we love stable connections and lasting relationships.
+ +
+ +
Summer's here, and so is your limited-time exclusive offer:
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + - - - + +
-

Hi {{firstname}},

-

- Just like you, we love stable connections and lasting relationships. -

-

- Summer's here, and so is your - limited-time exclusive offer: -

+
+ + + + + + + + + + + + + + + + + +
+ +
🎁 {{amount}} at hundreds of brands
+ +
+ +
⚡ Instant on activation
+ +
+ +
🤝 Stay with us {{commitment_months}}+ months
+ +
+
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
✅ Option 1
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{#expiry}} - - - - - - {{/expiry}} - - - - - - - - - + +
-
-
- Digital gift card -
-
- 🎁 {{amount}} at hundreds of brands -
-
-
- - - - - -
-
-
- Delivery -
-
- ⚡ Instant on activation -
-
-
-
-
- Condition -
-
- 🤝 Stay with us {{commitment_months}}+ months -
-
-
-
- - ✅ Option 1 - -
- - - - - -
-
- 🎁  {{amount}} -
-
- Redeem my gift card -
-
- Pick your brand on Giftbit → -
-
+
+ + 🎁  {{amount}}
-
- 🪂 If you leave before {{commitment_months}} months, the prorated portion is refundable. -
-
- - ⏭️ Option 2 - -
-
- Do nothing. Your monthly subscription continues as usual — - no commitment, no gift card. -
-
-
- ⏰ This offer expires on {{expiry}}. -
-
-
- 🤝 Thanks for helping our regional economy thrive! -
-
- The TARGO team -
-
+ +
+ +
+ + +
- - - - - - - - - + + + + + + + + + + + +
+ +
-
- Quelques exemples de choix pour votre carte cadeau : -
-
- - - - - - - - - - - - - - - - - - - - - - -
- - -
- Amazon -
-
- - -
- IGA -
-
- - -
- Tim Hortons -
-
- - -
- $1 Plus -
-
- - -
- Pizza Pizza -
-
- - -
- Home Depot -
-
- - -
- Best Buy -
-
- - -
- Walmart -
-
- - -
- Petro-Canada -
-
- - -
- Esso -
-
- - -
- Home Hardware -
-
- - -
- Sobeys -
-
-
+ + + + +
+ + +
+ + + + + + + + + +
+ +
🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable.
+ +
+ +
+ + +
- - - + + + + + + + + + + + +
+ +
+ + + + + +
+ + +
+ + + + + + + + + +
+ +
⏭️ Option 2
+ +
+ +
+ + +
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Do nothing. Your monthly subscription continues as usual — no commitment, no gift card.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ +
🤝 Thanks for helping our regional economy thrive!
+ +
+ +
The TARGO team
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
You're getting this email because you're a TARGO customer at {{description}}.
+ Got a question? Write to + support@targo.ca + or call + 514 448-0773. + Support 7 days/week.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - + +
-
- You're getting this email because you're a TARGO customer at - {{description}}.
- Got a question? Write to - support@targo.ca - or call - 514 448-0773 - / 1 855 888-2746. - Support 7 days/week. -
+
+ + TARGO +
+ +
+ +
www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · All rights reserved.
+ +
+ +
+ + +
- - - - - - -
- TARGO -
- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · All rights reserved. -
-
- -
- - + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/campaigns/templates/gift-email-en.mjml b/scripts/campaigns/templates/gift-email-en.mjml new file mode 100644 index 0000000..00ddfc6 --- /dev/null +++ b/scripts/campaigns/templates/gift-email-en.mjml @@ -0,0 +1,132 @@ + + + An exclusive offer from TARGO + Just like you, we love stable connections and lasting relationships. + + + + + + + + + + + + + + + + + + + + + + + Hi {{firstname}}, + + Just like you, we love stable connections and lasting relationships. + + + Summer's here, and so is your limited-time exclusive offer: + + + + + + + + 🎁 {{amount}} at hundreds of brands + ⚡ Instant on activation + 🤝 Stay with us {{commitment_months}}+ months + + + + + + + + ✅ Option 1 + + + + + + + + + 🎁  {{amount}} + + + + + + + + + 🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable. + + + + + + + + + ⏭️ Option 2 + + + + + + + + Do nothing. Your monthly subscription continues as usual — no commitment, no gift card. + + + + + + + + 🤝 Thanks for helping our regional economy thrive! + The TARGO team + + + + + + + + You're getting this email because you're a TARGO customer at {{description}}.
+ Got a question? Write to + support@targo.ca + or call + 514 448-0773. + Support 7 days/week. +
+
+
+ + + + + + + www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · All rights reserved. +
+
+
+ +
+
diff --git a/scripts/campaigns/templates/gift-email-fr-mjml.html b/scripts/campaigns/templates/gift-email-fr-mjml.html deleted file mode 100644 index 6960d99..0000000 --- a/scripts/campaigns/templates/gift-email-fr-mjml.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - Une offre exclusive de TARGO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Comme toi, on aime les connexions stables et les relations durables.
- -
- - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- - - - - - - -
- - TARGO - -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- -
Bonjour {{firstname}},
- -
- -
Comme toi, on aime les connexions stables et les relations durables.
- -
- -
Avec l'arrivée de l'été, voici ton offre exclusive pour un temps limité :
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - -
- - - - - - - - - - - - - - - - - -
- -
🎁 {{amount}} chez des centaines de marques
- -
- -
⚡ Instantané à l'activation
- -
- -
🤝 Rester encore {{commitment_months}} mois ou +
- -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
✅ Option 1
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- - - - - - - -
- - 🎁  {{amount}} - -
- -
- -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
⏭️ Option 2
- -
- -
- - -
- -
- - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- -
🤝 Merci de faire rouler l'économie de notre région avec nous !
- -
- -
L'équipe TARGO
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
Tu reçois ce courriel parce que tu es client(e) TARGO à {{description}}.
- Une question ? Écris à - support@targo.ca - ou appelle au - 514 448-0773. - Support 7j/7.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- - - - - - - -
- - TARGO - -
- -
- -
www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés.
- -
- -
- - -
- -
- - - - - -
- - - - \ No newline at end of file diff --git a/scripts/campaigns/templates/gift-email-fr-simple.html b/scripts/campaigns/templates/gift-email-fr-simple.html deleted file mode 100644 index ee68cdb..0000000 --- a/scripts/campaigns/templates/gift-email-fr-simple.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -Une offre exclusive de TARGO - - - - - - - - - - - - - -
- - - - -
- TARGO -
- - - - -
-

Bonjour {{firstname}},

-

- Comme toi, on aime les connexions stables et les relations durables. -

-

- Avec l'arrivée de l'été, voici ton - offre exclusive pour un temps limité : -

-
- - - - -
- - -
-

🎁 {{amount}} chez des centaines de marques

-

⚡ Instantané à l'activation

-

🤝 Rester encore {{commitment_months}} mois ou +

-
-
- - - - -
- ✅ Option 1 -
- - - - -
- - 🎁  {{amount}} - Activer ma carte-cadeau - Choisir ma carte sur Giftbit → - -
- - - - -
-

- 🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable. -

-
- - - - -
- ⏭️ Option 2 -
- - - -
-

- Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau. -

-
- - {{#expiry}} - - - -
-

- ⏰ Cette offre expire le {{expiry}}. -

-
- {{/expiry}} - - - - -
-

🤝 Merci de faire rouler l'économie de notre région avec nous !

-

L'équipe TARGO

-
- - - - -
-

- Tu reçois ce courriel parce que tu es client(e) TARGO à - {{description}}.
- Une question ? Écris à - support@targo.ca - ou appelle au - 514 448-0773. - Support 7j/7. -

-
- - - - -
- TARGO -

- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés. -

-
- -
- - - diff --git a/scripts/campaigns/templates/gift-email-fr.html b/scripts/campaigns/templates/gift-email-fr.html index 1eab0df..6960d99 100644 --- a/scripts/campaigns/templates/gift-email-fr.html +++ b/scripts/campaigns/templates/gift-email-fr.html @@ -1,362 +1,814 @@ - - - - - -Une offre exclusive de TARGO - - - - - - - - + + + + Une offre exclusive de TARGO + + + + + + + + + + + + + + - - - - -
+ + + + + + + + + + + + + + + +
Comme toi, on aime les connexions stables et les relations durables.
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - + +
- TARGO + + + TARGO +
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ +
Bonjour {{firstname}},
+ +
+ +
Comme toi, on aime les connexions stables et les relations durables.
+ +
+ +
Avec l'arrivée de l'été, voici ton offre exclusive pour un temps limité :
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + - - - + +
-

Bonjour {{firstname}},

-

- Comme toi, on aime les connexions stables et les relations durables. -

-

- Avec l'arrivée de l'été, voici ton - offre exclusive pour un temps limité : -

+
+ + + + + + + + + + + + + + + + + +
+ +
🎁 {{amount}} chez des centaines de marques
+ +
+ +
⚡ Instantané à l'activation
+ +
+ +
🤝 Rester encore {{commitment_months}} mois ou +
+ +
+
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
✅ Option 1
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{#expiry}} - - - - - - {{/expiry}} - - - - - - - - - + +
-
-
- Carte-cadeau numérique -
-
- 🎁 {{amount}} chez des centaines de marques -
-
-
- - - - - -
-
-
- Envoi -
-
- ⚡ Instantané à l'activation -
-
-
-
-
- Condition -
-
- 🤝 Rester encore {{commitment_months}} mois ou + -
-
-
-
- - ✅ Option 1 - -
- - - - - - -
-
- 🎁  {{amount}} -
-
- Activer ma carte-cadeau -
-
- Choisir ma carte sur Giftbit → -
-
+
+ + 🎁  {{amount}}
-
- 🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable. -
-
- - ⏭️ Option 2 - -
-
- Ne rien faire. Ton abonnement mensuel se poursuit normalement, - sans engagement ni carte-cadeau. -
-
-
- ⏰ Cette offre expire le {{expiry}}. -
-
-
- 🤝 Merci de faire rouler l'économie de notre région avec nous ! -
-
- L'équipe TARGO -
-
+ +
+ +
+ +
+ +
+ + +
- - - - - - - - - + + + + + + + + + + + +
+ +
-
- Quelques exemples de choix pour votre carte cadeau : -
-
- - - - - - - - - - - - - - - - - - - - - - -
- - -
- Amazon -
-
- - -
- IGA -
-
- - -
- Tim Hortons -
-
- - -
- $1 Plus -
-
- - -
- Pizza Pizza -
-
- - -
- Home Depot -
-
- - -
- Best Buy -
-
- - -
- Walmart -
-
- - -
- Petro-Canada -
-
- - -
- Esso -
-
- - -
- Home Hardware -
-
- - -
- Sobeys -
-
-
+ + + + +
+ + +
+ + + + + + + + + +
+ +
🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable.
+ +
+ +
+ + +
- - - + + + + + + + + + + + +
+ +
+ + + + + +
+ + +
+ + + + + + + + + +
+ +
⏭️ Option 2
+ +
+ +
+ + +
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ +
🤝 Merci de faire rouler l'économie de notre région avec nous !
+ +
+ +
L'équipe TARGO
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Tu reçois ce courriel parce que tu es client(e) TARGO à {{description}}.
+ Une question ? Écris à + support@targo.ca + ou appelle au + 514 448-0773. + Support 7j/7.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - + +
-
- Tu reçois ce courriel parce que tu es client(e) TARGO à - {{description}}.
- Une question ? Écris-nous à - support@targo.ca - ou appelle au - 514 448-0773 - / 1 855 888-2746. - Support 7j/7. -
+
+ + TARGO +
+ +
+ +
www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · Tous droits réservés.
+ +
+ +
+ + +
- - - - - - -
- TARGO -
- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés. -
-
- -
- - + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/campaigns/templates/gift-email-fr-mjml.mjml b/scripts/campaigns/templates/gift-email-fr.mjml similarity index 100% rename from scripts/campaigns/templates/gift-email-fr-mjml.mjml rename to scripts/campaigns/templates/gift-email-fr.mjml diff --git a/services/targo-hub/lib/campaigns.js b/services/targo-hub/lib/campaigns.js index 086fcbf..8823949 100644 --- a/services/targo-hub/lib/campaigns.js +++ b/services/targo-hub/lib/campaigns.js @@ -652,14 +652,10 @@ const DEFAULT_TEMPLATE = path.join(TEMPLATES_DIR, 'gift-email-fr.html') // gets used at send time. `-simple` variants are flat-structured copies // designed to parse cleanly in GrapesJS visual editor (no nested tables). // Adding a new lang or variant = drop a new .html here + add to this list. -const EDITABLE_TEMPLATES = [ - 'gift-email-fr', - 'gift-email-en', - 'gift-email-fr-simple', - 'gift-email-en-simple', - // MJML variant — visual editor uses grapesjs-mjml plugin on this one - 'gift-email-fr-mjml', -] +// Canonical templates — both now backed by .mjml source (compiled to .html +// on save for the send-worker). Legacy HTML-only variants were dropped +// after the MJML migration (see git history for rollback). +const EDITABLE_TEMPLATES = ['gift-email-fr', 'gift-email-en'] // Resolve the template path for a given recipient language. Falls back to // the French version (most of the customer base) if the language-specific @@ -1093,6 +1089,60 @@ async function handle (req, res, method, path) { } } + // POST /campaigns/templates/:name/test-send — send ONE rendered email to a + // specific address for visual QA. Uses the campaign Mailjet sender + + // throttle. NOT linked to any campaign — purely for template testing. + // Body: { to: 'louis@targo.ca', vars: {...}, from?: 'TARGO ' } + const tplTestSend = path.match(/^\/campaigns\/templates\/([a-zA-Z0-9_-]+)\/test-send$/) + if (tplTestSend && method === 'POST') { + const body = await parseBody(req) + const to = (body.to || '').trim() + if (!to || !to.includes('@')) { + return json(res, 400, { error: 'to (recipient email) required' }) + } + const name = tplTestSend[1] + let html + try { + // Always read the COMPILED .html — what the recipient actually receives. + // MJML source is for the editor; the send-worker reads compiled HTML. + html = fs.readFileSync(templatePath(name), 'utf8') + } catch (e) { + return json(res, 404, { error: 'template not found', detail: e.message }) + } + const vars = { + firstname: 'Louis', + lastname: 'Test', + email: to, + description: '123 Rue de Test, Ste-Clotilde', + gift_url: 'https://gft.link/TEST123', + amount: '60 $', + expiry: '31 décembre 2026', + commitment_months: '3', + year: new Date().getFullYear(), + ...(body.vars || {}), + } + const rendered = renderTemplate(html, vars) + const fromAddr = body.from || cfg.MAIL_FROM || 'TARGO ' + try { + const info = await email.sendEmail({ + to, + from: fromAddr, + subject: body.subject || `[TEST] Template ${name}`, + html: rendered, + headers: { 'X-MJ-CustomID': `test-send:${name}:${Date.now()}` }, + }) + if (!info) return json(res, 500, { error: 'SMTP send returned false (see hub logs)' }) + log(`test-send: ${name} → ${to} (${rendered.length} bytes)`) + return json(res, 200, { + sent: true, to, from: fromAddr, + message_id: info.messageId || null, + bytes: rendered.length, + }) + } catch (e) { + return json(res, 500, { error: e.message }) + } + } + // POST /campaigns/templates/:name/preview — render with sample data // Useful for the editor's "Preview" pane to see what {{vars}} resolve to. const tplPreview = path.match(/^\/campaigns\/templates\/([a-zA-Z0-9_-]+)\/preview$/) diff --git a/services/targo-hub/templates/gift-email-en-simple.html b/services/targo-hub/templates/gift-email-en-simple.html deleted file mode 100644 index 69b7b34..0000000 --- a/services/targo-hub/templates/gift-email-en-simple.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -An exclusive offer from TARGO - - - - - - - - - - - - - -
- - - - -
- TARGO -
- - - - -
-

Hi {{firstname}},

-

- Just like you, we love stable connections and lasting relationships. -

-

- Summer's here, and so is your - limited-time exclusive offer: -

-
- - - - -
- - -
-

🎁 {{amount}} at hundreds of brands

-

⚡ Instant on activation

-

🤝 Stay with us {{commitment_months}}+ months

-
-
- - - - -
- ✅ Option 1 -
- - - - -
- - 🎁  {{amount}} - Redeem my gift card - Pick your brand on Giftbit → - -
- - - - -
-

- 🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable. -

-
- - - - -
- ⏭️ Option 2 -
- - - -
-

- Do nothing. Your monthly subscription continues as usual — no commitment, no gift card. -

-
- - {{#expiry}} - - - -
-

- ⏰ This offer expires on {{expiry}}. -

-
- {{/expiry}} - - - - -
-

🤝 Thanks for helping our regional economy thrive!

-

The TARGO team

-
- - - - -
-

- You're getting this email because you're a TARGO customer at - {{description}}.
- Got a question? Write to - support@targo.ca - or call - 514 448-0773. - Support 7 days/week. -

-
- - - - -
- TARGO -

- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · All rights reserved. -

-
- -
- - - diff --git a/services/targo-hub/templates/gift-email-en.html b/services/targo-hub/templates/gift-email-en.html index b87c591..b40f577 100644 --- a/services/targo-hub/templates/gift-email-en.html +++ b/services/targo-hub/templates/gift-email-en.html @@ -1,355 +1,799 @@ - - - - - -An exclusive offer from TARGO - - - - - - - - + + + + An exclusive offer from TARGO + + + + + + + + + + + + + + - - - - -
+ + + + + + + + + + + + + + + +
Just like you, we love stable connections and lasting relationships.
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - + +
- TARGO + + + TARGO +
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ +
Hi {{firstname}},
+ +
+ +
Just like you, we love stable connections and lasting relationships.
+ +
+ +
Summer's here, and so is your limited-time exclusive offer:
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + - - - + +
-

Hi {{firstname}},

-

- Just like you, we love stable connections and lasting relationships. -

-

- Summer's here, and so is your - limited-time exclusive offer: -

+
+ + + + + + + + + + + + + + + + + +
+ +
🎁 {{amount}} at hundreds of brands
+ +
+ +
⚡ Instant on activation
+ +
+ +
🤝 Stay with us {{commitment_months}}+ months
+ +
+
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
✅ Option 1
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{#expiry}} - - - - - - {{/expiry}} - - - - - - - - - + +
-
-
- Digital gift card -
-
- 🎁 {{amount}} at hundreds of brands -
-
-
- - - - - -
-
-
- Delivery -
-
- ⚡ Instant on activation -
-
-
-
-
- Condition -
-
- 🤝 Stay with us {{commitment_months}}+ months -
-
-
-
- - ✅ Option 1 - -
- - - - - -
-
- 🎁  {{amount}} -
-
- Redeem my gift card -
-
- Pick your brand on Giftbit → -
-
+
+ + 🎁  {{amount}}
-
- 🪂 If you leave before {{commitment_months}} months, the prorated portion is refundable. -
-
- - ⏭️ Option 2 - -
-
- Do nothing. Your monthly subscription continues as usual — - no commitment, no gift card. -
-
-
- ⏰ This offer expires on {{expiry}}. -
-
-
- 🤝 Thanks for helping our regional economy thrive! -
-
- The TARGO team -
-
+ +
+ +
+ + +
- - - - - - - - - + + + + + + + + + + + +
+ +
-
- Quelques exemples de choix pour votre carte cadeau : -
-
- - - - - - - - - - - - - - - - - - - - - - -
- - -
- Amazon -
-
- - -
- IGA -
-
- - -
- Tim Hortons -
-
- - -
- $1 Plus -
-
- - -
- Pizza Pizza -
-
- - -
- Home Depot -
-
- - -
- Best Buy -
-
- - -
- Walmart -
-
- - -
- Petro-Canada -
-
- - -
- Esso -
-
- - -
- Home Hardware -
-
- - -
- Sobeys -
-
-
+ + + + +
+ + +
+ + + + + + + + + +
+ +
🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable.
+ +
+ +
+ + +
- - - + + + + + + + + + + + +
+ +
+ + + + + +
+ + +
+ + + + + + + + + +
+ +
⏭️ Option 2
+ +
+ +
+ + +
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Do nothing. Your monthly subscription continues as usual — no commitment, no gift card.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ +
🤝 Thanks for helping our regional economy thrive!
+ +
+ +
The TARGO team
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
You're getting this email because you're a TARGO customer at {{description}}.
+ Got a question? Write to + support@targo.ca + or call + 514 448-0773. + Support 7 days/week.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - + +
-
- You're getting this email because you're a TARGO customer at - {{description}}.
- Got a question? Write to - support@targo.ca - or call - 514 448-0773 - / 1 855 888-2746. - Support 7 days/week. -
+
+ + TARGO +
+ +
+ +
www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · All rights reserved.
+ +
+ +
+ + +
- - - - - - -
- TARGO -
- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · All rights reserved. -
-
- -
- - + + + + + + + + + + + \ No newline at end of file diff --git a/services/targo-hub/templates/gift-email-en.mjml b/services/targo-hub/templates/gift-email-en.mjml new file mode 100644 index 0000000..00ddfc6 --- /dev/null +++ b/services/targo-hub/templates/gift-email-en.mjml @@ -0,0 +1,132 @@ + + + An exclusive offer from TARGO + Just like you, we love stable connections and lasting relationships. + + + + + + + + + + + + + + + + + + + + + + + Hi {{firstname}}, + + Just like you, we love stable connections and lasting relationships. + + + Summer's here, and so is your limited-time exclusive offer: + + + + + + + + 🎁 {{amount}} at hundreds of brands + ⚡ Instant on activation + 🤝 Stay with us {{commitment_months}}+ months + + + + + + + + ✅ Option 1 + + + + + + + + + 🎁  {{amount}} + + + + + + + + + 🪂 If you leave before {{commitment_months}} months, the prorated amount is refundable. + + + + + + + + + ⏭️ Option 2 + + + + + + + + Do nothing. Your monthly subscription continues as usual — no commitment, no gift card. + + + + + + + + 🤝 Thanks for helping our regional economy thrive! + The TARGO team + + + + + + + + You're getting this email because you're a TARGO customer at {{description}}.
+ Got a question? Write to + support@targo.ca + or call + 514 448-0773. + Support 7 days/week. +
+
+
+ + + + + + + www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · All rights reserved. +
+
+
+ +
+
diff --git a/services/targo-hub/templates/gift-email-fr-mjml.html b/services/targo-hub/templates/gift-email-fr-mjml.html deleted file mode 100644 index 6960d99..0000000 --- a/services/targo-hub/templates/gift-email-fr-mjml.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - Une offre exclusive de TARGO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Comme toi, on aime les connexions stables et les relations durables.
- -
- - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- - - - - - - -
- - TARGO - -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- -
Bonjour {{firstname}},
- -
- -
Comme toi, on aime les connexions stables et les relations durables.
- -
- -
Avec l'arrivée de l'été, voici ton offre exclusive pour un temps limité :
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - -
- - - - - - - - - - - - - - - - - -
- -
🎁 {{amount}} chez des centaines de marques
- -
- -
⚡ Instantané à l'activation
- -
- -
🤝 Rester encore {{commitment_months}} mois ou +
- -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
✅ Option 1
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- - - - - - - -
- - 🎁  {{amount}} - -
- -
- -
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
⏭️ Option 2
- -
- -
- - -
- -
- - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- -
🤝 Merci de faire rouler l'économie de notre région avec nous !
- -
- -
L'équipe TARGO
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - -
- -
Tu reçois ce courriel parce que tu es client(e) TARGO à {{description}}.
- Une question ? Écris à - support@targo.ca - ou appelle au - 514 448-0773. - Support 7j/7.
- -
- -
- - -
- -
- - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - -
- - - - - - - -
- - TARGO - -
- -
- -
www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés.
- -
- -
- - -
- -
- - - - - -
- - - - \ No newline at end of file diff --git a/services/targo-hub/templates/gift-email-fr-simple.html b/services/targo-hub/templates/gift-email-fr-simple.html deleted file mode 100644 index ee68cdb..0000000 --- a/services/targo-hub/templates/gift-email-fr-simple.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -Une offre exclusive de TARGO - - - - - - - - - - - - - -
- - - - -
- TARGO -
- - - - -
-

Bonjour {{firstname}},

-

- Comme toi, on aime les connexions stables et les relations durables. -

-

- Avec l'arrivée de l'été, voici ton - offre exclusive pour un temps limité : -

-
- - - - -
- - -
-

🎁 {{amount}} chez des centaines de marques

-

⚡ Instantané à l'activation

-

🤝 Rester encore {{commitment_months}} mois ou +

-
-
- - - - -
- ✅ Option 1 -
- - - - -
- - 🎁  {{amount}} - Activer ma carte-cadeau - Choisir ma carte sur Giftbit → - -
- - - - -
-

- 🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable. -

-
- - - - -
- ⏭️ Option 2 -
- - - -
-

- Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau. -

-
- - {{#expiry}} - - - -
-

- ⏰ Cette offre expire le {{expiry}}. -

-
- {{/expiry}} - - - - -
-

🤝 Merci de faire rouler l'économie de notre région avec nous !

-

L'équipe TARGO

-
- - - - -
-

- Tu reçois ce courriel parce que tu es client(e) TARGO à - {{description}}.
- Une question ? Écris à - support@targo.ca - ou appelle au - 514 448-0773. - Support 7j/7. -

-
- - - - -
- TARGO -

- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés. -

-
- -
- - - diff --git a/services/targo-hub/templates/gift-email-fr.html b/services/targo-hub/templates/gift-email-fr.html index 1eab0df..6960d99 100644 --- a/services/targo-hub/templates/gift-email-fr.html +++ b/services/targo-hub/templates/gift-email-fr.html @@ -1,362 +1,814 @@ - - - - - -Une offre exclusive de TARGO - - - - - - - - + + + + Une offre exclusive de TARGO + + + + + + + + + + + + + + - - - - -
+ + + + + + + + + + + + + + + +
Comme toi, on aime les connexions stables et les relations durables.
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ + + - - - + +
- TARGO + + + TARGO +
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+ +
Bonjour {{firstname}},
+ +
+ +
Comme toi, on aime les connexions stables et les relations durables.
+ +
+ +
Avec l'arrivée de l'été, voici ton offre exclusive pour un temps limité :
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + - - - + +
-

Bonjour {{firstname}},

-

- Comme toi, on aime les connexions stables et les relations durables. -

-

- Avec l'arrivée de l'été, voici ton - offre exclusive pour un temps limité : -

+
+ + + + + + + + + + + + + + + + + +
+ +
🎁 {{amount}} chez des centaines de marques
+ +
+ +
⚡ Instantané à l'activation
+ +
+ +
🤝 Rester encore {{commitment_months}} mois ou +
+ +
+
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
✅ Option 1
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{#expiry}} - - - - - - {{/expiry}} - - - - - - - - - + +
-
-
- Carte-cadeau numérique -
-
- 🎁 {{amount}} chez des centaines de marques -
-
-
- - - - - -
-
-
- Envoi -
-
- ⚡ Instantané à l'activation -
-
-
-
-
- Condition -
-
- 🤝 Rester encore {{commitment_months}} mois ou + -
-
-
-
- - ✅ Option 1 - -
- - - - - - -
-
- 🎁  {{amount}} -
-
- Activer ma carte-cadeau -
-
- Choisir ma carte sur Giftbit → -
-
+
+ + 🎁  {{amount}}
-
- 🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable. -
-
- - ⏭️ Option 2 - -
-
- Ne rien faire. Ton abonnement mensuel se poursuit normalement, - sans engagement ni carte-cadeau. -
-
-
- ⏰ Cette offre expire le {{expiry}}. -
-
-
- 🤝 Merci de faire rouler l'économie de notre région avec nous ! -
-
- L'équipe TARGO -
-
+ +
+ +
+ +
+ +
+ + +
- - - - - - - - - + + + + + + + + + + + +
+ +
-
- Quelques exemples de choix pour votre carte cadeau : -
-
- - - - - - - - - - - - - - - - - - - - - - -
- - -
- Amazon -
-
- - -
- IGA -
-
- - -
- Tim Hortons -
-
- - -
- $1 Plus -
-
- - -
- Pizza Pizza -
-
- - -
- Home Depot -
-
- - -
- Best Buy -
-
- - -
- Walmart -
-
- - -
- Petro-Canada -
-
- - -
- Esso -
-
- - -
- Home Hardware -
-
- - -
- Sobeys -
-
-
+ + + + +
+ + +
+ + + + + + + + + +
+ +
🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable.
+ +
+ +
+ + +
- - - + + + + + + + + + + + +
+ +
+ + + + + +
+ + +
+ + + + + + + + + +
+ +
⏭️ Option 2
+ +
+ +
+ + +
+ +
+ + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Ne rien faire. Ton abonnement mensuel se poursuit normalement, sans engagement ni carte-cadeau.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ +
🤝 Merci de faire rouler l'économie de notre région avec nous !
+ +
+ +
L'équipe TARGO
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + + +
+ + +
+ + + + + + + + + +
+ +
Tu reçois ce courriel parce que tu es client(e) TARGO à {{description}}.
+ Une question ? Écris à + support@targo.ca + ou appelle au + 514 448-0773. + Support 7j/7.
+ +
+ +
+ + +
+ +
+ + + + + + + + + +
+ + + + + + +
+ + +
+ + + + + + + + + + + + + +
+ + + - + +
-
- Tu reçois ce courriel parce que tu es client(e) TARGO à - {{description}}.
- Une question ? Écris-nous à - support@targo.ca - ou appelle au - 514 448-0773 - / 1 855 888-2746. - Support 7j/7. -
+
+ + TARGO +
+ +
+ +
www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · Tous droits réservés.
+ +
+ +
+ + +
- - - - - - -
- TARGO -
- www.targo.ca -  ·  1867 ch. de la rivière, Ste-Clotilde, QC
- © {{year}} TARGO Communications · Tous droits réservés. -
-
- -
- - + + + + + + + + + + + \ No newline at end of file diff --git a/services/targo-hub/templates/gift-email-fr.legacy-rich.html.bak b/services/targo-hub/templates/gift-email-fr.legacy-rich.html.bak new file mode 100644 index 0000000..1eab0df --- /dev/null +++ b/services/targo-hub/templates/gift-email-fr.legacy-rich.html.bak @@ -0,0 +1,362 @@ + + + + + +Une offre exclusive de TARGO + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{#expiry}} + + + + + + {{/expiry}} + + + + + + + + + +
+ TARGO +
+

Bonjour {{firstname}},

+

+ Comme toi, on aime les connexions stables et les relations durables. +

+

+ Avec l'arrivée de l'été, voici ton + offre exclusive pour un temps limité : +

+
+
+
+ Carte-cadeau numérique +
+
+ 🎁 {{amount}} chez des centaines de marques +
+
+
+ + + + + +
+
+
+ Envoi +
+
+ ⚡ Instantané à l'activation +
+
+
+
+
+ Condition +
+
+ 🤝 Rester encore {{commitment_months}} mois ou + +
+
+
+
+ + ✅ Option 1 + +
+ + + + + + +
+
+ 🎁  {{amount}} +
+
+ Activer ma carte-cadeau +
+
+ Choisir ma carte sur Giftbit → +
+
+
+
+
+ 🪂 En cas de départ avant {{commitment_months}} mois, le prorata du montant est remboursable. +
+
+ + ⏭️ Option 2 + +
+
+ Ne rien faire. Ton abonnement mensuel se poursuit normalement, + sans engagement ni carte-cadeau. +
+
+
+ ⏰ Cette offre expire le {{expiry}}. +
+
+
+ 🤝 Merci de faire rouler l'économie de notre région avec nous ! +
+
+ L'équipe TARGO +
+
+ + + + + + + + + +
+
+ Quelques exemples de choix pour votre carte cadeau : +
+
+ + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ Amazon +
+
+ + +
+ IGA +
+
+ + +
+ Tim Hortons +
+
+ + +
+ $1 Plus +
+
+ + +
+ Pizza Pizza +
+
+ + +
+ Home Depot +
+
+ + +
+ Best Buy +
+
+ + +
+ Walmart +
+
+ + +
+ Petro-Canada +
+
+ + +
+ Esso +
+
+ + +
+ Home Hardware +
+
+ + +
+ Sobeys +
+
+
+ + + + + + +
+
+ Tu reçois ce courriel parce que tu es client(e) TARGO à + {{description}}.
+ Une question ? Écris-nous à + support@targo.ca + ou appelle au + 514 448-0773 + / 1 855 888-2746. + Support 7j/7. +
+
+ + + + + + +
+ TARGO +
+ www.targo.ca +  ·  1867 ch. de la rivière, Ste-Clotilde, QC
+ © {{year}} TARGO Communications · Tous droits réservés. +
+
+ +
+ + + diff --git a/services/targo-hub/templates/gift-email-fr-mjml.mjml b/services/targo-hub/templates/gift-email-fr.mjml similarity index 100% rename from services/targo-hub/templates/gift-email-fr-mjml.mjml rename to services/targo-hub/templates/gift-email-fr.mjml