/** Generates the HTML template for email verification messages */
export function verificationEmailHtml(verificationCode: string): string {
return `
Buddy Email Verification
🐶 Buddy
Verification code
|
|
Enter this code to verify your account:
${verificationCode}
Code expires soon. Didn't request this? Ignore it.
Buddy Team
|
|
© ${new Date().getFullYear()} Buddy
|
|
`;
}