import { EmailTemplate } from 'src/modules/objects/email/email.template'; export const RegistrationEmail = ( username: string, url: string, ): EmailTemplate => ({ text: ` Icy Network Welcome to Icy Network, ${username}! In order to proceed with logging in, please click on the following link to activate your account. Activate your account: ${url} `, html: /* html */ `

Icy Network

Welcome to Icy Network, ${username}!

In order to proceed with logging in, please click on the following link to activate your account.

Activate your account: ${url}

`, });