import type { Email } from '../interfaces/email.interface'; export class WelcomeEmail implements Email { constructor() { } subject(): string { return 'Welcome!' } html(): string { return /*html*/ ` Message

Welcome to Example

Thanks for using example.com. We want to make sure it's really you. Please enter the following verification code when prompted. If you don't have an exmaple.com an account, you can ignore this message.

`; } }