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 `
Please verify your email address by clicking the link below:
This link will expire in 24 hours.
`; };