import type { Email } from "../common/inferfaces/email.interface" export class EmailChangeNoticeEmail implements Email { constructor() { } subject(): string { return 'Email Change Notice' } html() { return /*html*/ `
Email address change notice
An update to your email address has been requested. If this is unexpected or you did not perform this action, please login and secure your account.
` } }