import { Link } from '../custom/link'; import { Note } from './components/note'; import Email from './template'; export default function ConfirmationTemplate(code: string) { return { subject: 'Welcome!', template: (

Dear subscriber,

thank you for subscribing to our newsletter! Please click the button below to confirm your subscription.

If you didn't subscribe to our newsletter, please ignore this email. } /> ) }; }