Files
newsletter-hackernews/components/emails/subscribe.tsx
2023-12-05 20:13:29 +01:00

23 lines
484 B
TypeScript

import Email from './template';
export default function ConfirmationEmail(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>
.
</>
}
/>
)
};
}