import type { Email } from "../common/inferfaces/email.interface" export class LoginVerificationEmail implements Email { constructor(private readonly token: string) { } subject(): string { return 'Email Verification' } html() { return /*html*/ `
Verify your email address
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.
Verification Code
${this.token}
(This code is valid for 15 minutes)