brf/server/templates/emails/invite.ts
2025-12-18 07:31:37 +01:00

18 lines
554 B
TypeScript

import html from '../../lib/html.ts'
export default ({ link }: { link: string }) => html`
<table align="center" width="600">
<tr>
<td style="text-align: center; font-family: Arial, sans-serif;" valign="top">
<h1>Congratulations! You have been invited to Startbit Admin!</h1>
<p>To redeem your invite, all you need to do now is click on the link below.</p>
<p><a href="${link}">${link}</a></p>
<p><strong>This email is autogenerated and cannot be replied to.</strong></p>
</td>
</tr>
</table>
`