added white lable name

This commit is contained in:
2021-03-23 00:36:53 -04:00
parent 96a97c1d6d
commit 0e212c48cc
5 changed files with 16 additions and 14 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
module.exports = {
subject: 'Password reset for Theta 42 account',
subject: 'Password reset for {{ name }} account',
message: `
<h2> Theta 42 account</h2>
<h2> {{ name }} account</h2>
<p>
Hello {{ user.givenName }},
@@ -19,7 +19,7 @@ module.exports = {
</p>
Thank you,<br />
Theta 42
{{ name }}
</p>
`
};
@@ -1,7 +1,7 @@
module.exports = {
subject: 'Validate email for Theta 42 account',
subject: 'Validate email for {{ name }} account',
message: `
<h2> Theta 42 account</h2>
<h2> {{ name }} account</h2>
<p>
Welcome,
@@ -18,7 +18,7 @@ module.exports = {
</p>
Thank you,<br />
Theta 42
{{ name }}
</p>
`
};
+4 -4
View File
@@ -1,12 +1,12 @@
module.exports = {
subject: 'Welcome to Theta 42!',
subject: 'Welcome to {{ name }}!',
message: `
<p>
Welcome {{user.givenName}},
</p>
<p>
Your new Theta 42 Single sign-on account is ready to use. Here is some
Your new {{ name }} Single sign-on account is ready to use. Here is some
information to get you started.
</p>
@@ -19,7 +19,7 @@ module.exports = {
</p>
<p>
You account is ready to be used now, test it by SSHing into the Theta 42
You account is ready to be used now, test it by SSHing into the {{ name }}
jump host \`ssh {{user.uid}}@718it.biz\`
</p>
@@ -28,7 +28,7 @@ module.exports = {
You will be notified of new features and services as they become available.
</p>
Thank you,<br />
Theta 42
{{ name }}
</p>
`
};