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

${title}

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

This email was sent from your Memento instance.

`; }