export const emailTemplate = ({ title, content, buttonContent, buttonUrl, subContent, }: { title: string; content: string; buttonContent?: string; buttonUrl?: string; subContent?: string; }) => { return ` ${ buttonContent && buttonUrl ? `` : '' } ${ subContent ? `` : '' }
AFFiNE log
${title}
${content}
${buttonContent}
${subContent}
AFFiNE github link AFFiNE twitter link AFFiNE discord link AFFiNE youtube link AFFiNE telegram link AFFiNE reddit link
One hyper-fused platform for wildly creative minds
Copyrightcopyright2023-${new Date().getUTCFullYear()} Toeverything
`; };