icynet-auth-server/src/modules/objects/user/email/registration.email.ts

30 lines
994 B
TypeScript

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}
This email was sent to you because you have created an account on Icy Network. If you did not create an account, you may contact us or just let the account expire.
`,
html: /* html */ `
<h1>Icy Network</h1>
<p><strong>Welcome to Icy Network, ${username}!</strong></p>
<p>In order to proceed with logging in, please click on the following link to activate your account.</p>
<p>Activate your account: <a href="${url}" target="_blank">${url}</a></p>
<p>This email was sent to you because you have created an account on Icy Network. If you did not create an account, you may contact us or just let the account expire.</p>
`,
});