Files
newsletter-hackernews/components/emails/confirmation.tsx
2023-12-17 17:48:08 +01:00

23 lines
487 B
TypeScript

import Email from './template';
export default function ConfirmationTemplate(code: string) {
return {
subject: 'Welcome!',
template: (
<Email
title={'Welcome!'}
body={
<>
Thank you for subscribing. Please confirm your email address by
clicking{' '}
<a href={`${process.env.HOME_URL}/confirmation?code=${code}`}>
here
</a>
.
</>
}
/>
)
};
}