Files
sso-manager-node/nodejs/views/email_templates/welcome.js
T
2021-03-23 00:36:53 -04:00

35 lines
666 B
JavaScript

module.exports = {
subject: 'Welcome to {{ name }}!',
message: `
<p>
Welcome {{user.givenName}},
</p>
<p>
Your new {{ name }} Single sign-on account is ready to use. Here is some
information to get you started.
</p>
<p>
Your username is <b>{{user.uid}}</b>
</p>
<p>
You can manage your account at https://sso.theta42.com
</p>
<p>
You account is ready to be used now, test it by SSHing into the {{ name }}
jump host \`ssh {{user.uid}}@718it.biz\`
</p>
<p>
The SSO service is still in beta, so please report any bugs you may find!
You will be notified of new features and services as they become available.
</p>
Thank you,<br />
{{ name }}
</p>
`
};