From c3e75d0805fa17150737983724e5c1cc18a05f4d Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Mon, 22 Dec 2025 12:43:20 +0530 Subject: [PATCH] feat: Add `getLogo` function providing a styled text SVG logo for email template compatibility. --- src/email/templates/base.template.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/email/templates/base.template.ts b/src/email/templates/base.template.ts index dc936cc..6aedb13 100644 --- a/src/email/templates/base.template.ts +++ b/src/email/templates/base.template.ts @@ -1,7 +1,26 @@ /** * Base HTML email template with RE-QuestN branding * All email templates use this as their foundation + * + * Using styled text logo for maximum email client compatibility */ + +function getLogo(): string { + // Styled text logo - works in ALL email clients (Gmail, Outlook, Apple Mail, etc.) + return ` + + + + + + + + + + + `; +} + export function getBaseTemplate(content: string): string { return `