import React from 'react' import { Components, Mailable } from '@tellimer/mailable' export class ConfirmEmailMailable extends Mailable { constructor (private readonly token: string) { super() } subject = 'Please confirm your email address' from = { name: 'Tellimer Support', email: 'support@tellimer.com', } view () { return ( Thank you for registering with us. Confirm your email ) } }