import { EmailTemplate } from 'src/modules/objects/email/email.template'; export const ForgotPasswordEmail = ( username: string, url: string, ): EmailTemplate => ({ text: ` Icy Network Hello, ${username}! You have requested a password reset on Icy Network. In order to change your password, please click on the following link. Change your password: ${url} If you did not request a password change on Icy Network, you can safely ignore this email. `, html: /* html */ `

Icy Network

Hello, ${username}! You have requested a password reset on Icy Network.

In order to change your password, please click on the following link.

Change your password: ${url}

If you did not request a password change on Icy Network, you can safely ignore this email.

`, });