/** * Base HTML Email Layout * @ai-summary Main email wrapper with MotoVaultPro branding * @ai-context Uses table-based layout for email client compatibility */ import { EMAIL_STYLES } from './email-styles'; // External logo URL - hosted on GitHub for reliability const LOGO_URL = 'https://raw.githubusercontent.com/ericgullickson/images/c58b0e4773e8395b532f97f6ab529e38ea4dc8be/motovaultpro-auth0-small.png'; /** * Renders the complete HTML email layout with branding * @param content - The rendered email body content (HTML) * @returns Complete HTML email string with DOCTYPE and layout */ export function renderEmailLayout(content: string): string { return ` MotoVaultPro
`; }