import { EmailVerificationToken } from '../auth.types'; export const verificationEmailTemplate = (token: EmailVerificationToken) => { const baseUrl = process.env.APP_BASE_URL || 'http://localhost:5173'; const verificationLink = `${baseUrl}/verify-email?token=${token.token}`; return `

Email Verification

Please verify your email address by clicking the link below:

${verificationLink}

This link will expire in 24 hours.

`; };