export function getEmailTemplate(title: string, content: string, actionLink?: string, actionText?: string) { return `

${title}

${content}
${actionLink ? `
${actionText || 'Click here'}
` : ''}
`; }