email templates

This commit is contained in:
nmemmert
2026-06-03 13:14:08 -04:00
parent 49c9994156
commit a2c4924191
5 changed files with 389 additions and 51 deletions
+45
View File
@@ -223,6 +223,31 @@ export interface SiteContent {
welcomeEmailScripture: string
welcomeEmailScriptureRef: string
welcomeEmailSignoff: string
// ── Newsletter Welcome Email CTA labels ──
welcomeEmailSpotifyBtnLabel: string
welcomeEmailAppleBtnLabel: string
welcomeEmailStartHereLinkLabel: string
// ── Study Account Welcome Email ──
studyWelcomeEmailSubject: string
studyWelcomeEmailBody: string
studyWelcomeEmailCtaLabel: string
studyWelcomeEmailCtaPath: string
studyWelcomeEmailSignoff: string
// ── Study Account Deleted Email ──
studyDeletedEmailSubject: string
studyDeletedEmailBody: string
studyDeletedEmailCtaLabel: string
studyDeletedEmailCtaPath: string
studyDeletedEmailSignoff: string
// ── Study Lesson Reminder Email ──
studyReminderEmailSubjectPrefix: string
studyReminderEmailBody: string
studyReminderEmailCtaLabel: string
studyReminderEmailSignoff: string
// ── Email Change Confirmation ──
emailChangeSubject: string
emailChangeBody: string
emailChangeCtaLabel: string
// ── Header ──
headerFollowLabel: string
// ── Cookie banner ──
@@ -387,6 +412,26 @@ export const DEFAULTS: SiteContent = {
welcomeEmailScripture: 'For the grace of God has appeared, bringing salvation to all people.',
welcomeEmailScriptureRef: 'Titus 2:11 - BSB',
welcomeEmailSignoff: 'Grace and peace,\nNate',
welcomeEmailSpotifyBtnLabel: 'Listen on Spotify',
welcomeEmailAppleBtnLabel: 'Apple Podcasts',
welcomeEmailStartHereLinkLabel: 'Open Start Here page',
studyWelcomeEmailSubject: 'Welcome to the Study Community',
studyWelcomeEmailBody: 'Your student account is ready. Open your studies and continue learning, or manage your account details anytime.',
studyWelcomeEmailCtaLabel: 'Open Studies',
studyWelcomeEmailCtaPath: '/study',
studyWelcomeEmailSignoff: 'Grace and peace,\nVerse by Verse with Nate',
studyDeletedEmailSubject: 'Your study account was deleted',
studyDeletedEmailBody: 'This confirms your study account and saved notes were deleted. If this was not you, please contact us immediately.',
studyDeletedEmailCtaLabel: 'Create a New Account',
studyDeletedEmailCtaPath: '/study/signup',
studyDeletedEmailSignoff: 'Verse by Verse with Nate',
studyReminderEmailSubjectPrefix: 'New lesson available:',
studyReminderEmailBody: 'A new lesson has been unlocked in your study track. Open it below to continue where you left off.',
studyReminderEmailCtaLabel: 'Open the Lesson',
studyReminderEmailSignoff: 'Grace and peace,\nVerse by Verse with Nate',
emailChangeSubject: 'Confirm your new email address',
emailChangeBody: 'Click the link below to confirm your new account email. If you did not request this change, ignore this message.',
emailChangeCtaLabel: 'Confirm Email Change',
headerFollowLabel: 'Follow on Spotify',
cookieBannerText: 'We use optional analytics cookies to measure visits and location trends for site improvement.',
customLinks: [],