@nauth-toolkit/email-nodemailer 0.1.60 → 0.1.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodemailer-email.provider.d.ts +159 -0
- package/dist/nodemailer-email.provider.d.ts.map +1 -1
- package/dist/nodemailer-email.provider.js +352 -0
- package/dist/nodemailer-email.provider.js.map +1 -1
- package/dist/templates/default/account-disabled.html.hbs +643 -0
- package/dist/templates/default/account-disabled.text.hbs +16 -0
- package/dist/templates/default/account-enabled.html.hbs +669 -0
- package/dist/templates/default/account-enabled.text.hbs +16 -0
- package/dist/templates/default/adaptive-mfa-risk-alert.html.hbs +694 -0
- package/dist/templates/default/adaptive-mfa-risk-alert.text.hbs +21 -0
- package/dist/templates/default/admin-password-reset.html.hbs +657 -0
- package/dist/templates/default/admin-password-reset.text.hbs +16 -0
- package/dist/templates/default/email-changed-new.html.hbs +679 -0
- package/dist/templates/default/email-changed-new.text.hbs +20 -0
- package/dist/templates/default/email-changed-old.html.hbs +669 -0
- package/dist/templates/default/email-changed-old.text.hbs +20 -0
- package/dist/templates/default/mfa-device-removed.html.hbs +681 -0
- package/dist/templates/default/mfa-device-removed.text.hbs +20 -0
- package/dist/templates/default/mfa-method-added.html.hbs +66 -0
- package/dist/templates/default/mfa-method-added.text.hbs +14 -0
- package/dist/templates/default/sessions-revoked.html.hbs +705 -0
- package/dist/templates/default/sessions-revoked.text.hbs +20 -0
- package/dist/templates/handlebars-template.engine.d.ts +37 -0
- package/dist/templates/handlebars-template.engine.d.ts.map +1 -1
- package/dist/templates/handlebars-template.engine.js +49 -3
- package/dist/templates/handlebars-template.engine.js.map +1 -1
- package/package.json +2 -2
- package/src/templates/default/account-disabled.html.hbs +643 -0
- package/src/templates/default/account-disabled.text.hbs +16 -0
- package/src/templates/default/account-enabled.html.hbs +669 -0
- package/src/templates/default/account-enabled.text.hbs +16 -0
- package/src/templates/default/adaptive-mfa-risk-alert.html.hbs +694 -0
- package/src/templates/default/adaptive-mfa-risk-alert.text.hbs +21 -0
- package/src/templates/default/admin-password-reset.html.hbs +657 -0
- package/src/templates/default/admin-password-reset.text.hbs +16 -0
- package/src/templates/default/email-changed-new.html.hbs +679 -0
- package/src/templates/default/email-changed-new.text.hbs +20 -0
- package/src/templates/default/email-changed-old.html.hbs +669 -0
- package/src/templates/default/email-changed-old.text.hbs +20 -0
- package/src/templates/default/mfa-device-removed.html.hbs +681 -0
- package/src/templates/default/mfa-device-removed.text.hbs +20 -0
- package/src/templates/default/mfa-method-added.html.hbs +66 -0
- package/src/templates/default/mfa-method-added.text.hbs +14 -0
- package/src/templates/default/sessions-revoked.html.hbs +705 -0
- package/src/templates/default/sessions-revoked.text.hbs +20 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Email Address Updated
|
|
2
|
+
|
|
3
|
+
{{#if fullName}}Hi {{fullName}},{{/if}}
|
|
4
|
+
{{#if firstName}}Hi {{firstName}},{{/if}}
|
|
5
|
+
{{#if lastName}}Hi {{lastName}},{{/if}}
|
|
6
|
+
{{#if userName}}Hi {{userName}},{{/if}}
|
|
7
|
+
|
|
8
|
+
Welcome to your updated account email address.
|
|
9
|
+
|
|
10
|
+
{{#if oldEmail}}Previous Email: {{oldEmail}}{{/if}}
|
|
11
|
+
New Email (this address): {{userEmail}}
|
|
12
|
+
|
|
13
|
+
What's next?
|
|
14
|
+
Your email address has been successfully updated. All future notifications will be sent to this email address.
|
|
15
|
+
|
|
16
|
+
Security Note:
|
|
17
|
+
A security notification was also sent to your previous email address. If you made this change, no further action is required.
|
|
18
|
+
|
|
19
|
+
{{#if supportEmail}}Need Help?
|
|
20
|
+
If you have any questions, please contact support at {{supportEmail}}.{{/if}}
|
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
---
|
|
2
|
+
subject: Email Address Changed - {{appName}}
|
|
3
|
+
---
|
|
4
|
+
<!doctype html>
|
|
5
|
+
<html lang="und" dir="auto" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
|
6
|
+
<head>
|
|
7
|
+
<title>{{ subject }}</title>
|
|
8
|
+
<!--[if !mso]><!-->
|
|
9
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
10
|
+
<!--<![endif]-->
|
|
11
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
#outlook a { padding:0; }
|
|
15
|
+
body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }
|
|
16
|
+
table, td { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }
|
|
17
|
+
img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }
|
|
18
|
+
p { display:block;margin:13px 0; }
|
|
19
|
+
</style>
|
|
20
|
+
<!--[if mso]>
|
|
21
|
+
<noscript>
|
|
22
|
+
<xml>
|
|
23
|
+
<o:OfficeDocumentSettings>
|
|
24
|
+
<o:AllowPNG/>
|
|
25
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
|
26
|
+
</o:OfficeDocumentSettings>
|
|
27
|
+
</xml>
|
|
28
|
+
</noscript>
|
|
29
|
+
<![endif]-->
|
|
30
|
+
<!--[if lte mso 11]>
|
|
31
|
+
<style type="text/css">
|
|
32
|
+
.mj-outlook-group-fix { width:100% !important; }
|
|
33
|
+
</style>
|
|
34
|
+
<![endif]-->
|
|
35
|
+
|
|
36
|
+
<!--[if !mso]><!-->
|
|
37
|
+
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet" type="text/css">
|
|
38
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" type="text/css">
|
|
39
|
+
<style type="text/css">
|
|
40
|
+
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
|
|
41
|
+
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);
|
|
42
|
+
</style>
|
|
43
|
+
<!--<![endif]-->
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
<style type="text/css">
|
|
48
|
+
@media only screen and (min-width:480px) {
|
|
49
|
+
.mj-column-per-100 { width:100% !important; max-width: 100%; }
|
|
50
|
+
}
|
|
51
|
+
</style>
|
|
52
|
+
<style media="screen and (min-width:480px)">
|
|
53
|
+
.moz-text-html .mj-column-per-100 { width:100% !important; max-width: 100%; }
|
|
54
|
+
</style>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<style type="text/css">
|
|
60
|
+
|
|
61
|
+
@media only screen and (max-width:479px) {
|
|
62
|
+
table.mj-full-width-mobile { width: 100% !important; }
|
|
63
|
+
td.mj-full-width-mobile { width: auto !important; }
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
</style>
|
|
67
|
+
|
|
68
|
+
<style type="text/css">
|
|
69
|
+
/* Global CSS classes for reusable styles */
|
|
70
|
+
.text-primary {
|
|
71
|
+
color: #111827;
|
|
72
|
+
}
|
|
73
|
+
.text-secondary {
|
|
74
|
+
color: #374151;
|
|
75
|
+
}
|
|
76
|
+
.text-muted {
|
|
77
|
+
color: #6b7280;
|
|
78
|
+
}
|
|
79
|
+
.text-small {
|
|
80
|
+
color: #9ca3af;
|
|
81
|
+
}
|
|
82
|
+
.text-success {
|
|
83
|
+
color: #166534;
|
|
84
|
+
}
|
|
85
|
+
.text-danger {
|
|
86
|
+
color: #dc2626;
|
|
87
|
+
}
|
|
88
|
+
.text-info {
|
|
89
|
+
color: #0c4a6e;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.bg-success {
|
|
93
|
+
background-color: #f0fdf4;
|
|
94
|
+
}
|
|
95
|
+
.bg-danger {
|
|
96
|
+
background-color: #fef2f2;
|
|
97
|
+
}
|
|
98
|
+
.bg-info {
|
|
99
|
+
background-color: #f0f9ff;
|
|
100
|
+
}
|
|
101
|
+
.bg-muted {
|
|
102
|
+
background-color: #f9fafb;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.font-bold {
|
|
106
|
+
font-weight: 600;
|
|
107
|
+
}
|
|
108
|
+
.font-semibold {
|
|
109
|
+
font-weight: 500;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.heading {
|
|
113
|
+
font-size: 18px;
|
|
114
|
+
font-weight: 600;
|
|
115
|
+
color: #111827;
|
|
116
|
+
}
|
|
117
|
+
.heading-large {
|
|
118
|
+
font-size: 20px;
|
|
119
|
+
font-weight: 600;
|
|
120
|
+
color: #111827;
|
|
121
|
+
}
|
|
122
|
+
.text-small {
|
|
123
|
+
font-size: 14px;
|
|
124
|
+
}
|
|
125
|
+
.text-xs {
|
|
126
|
+
font-size: 12px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.code-block {
|
|
130
|
+
font-size: 48px !important;
|
|
131
|
+
font-weight: 700 !important;
|
|
132
|
+
letter-spacing: 12px !important;
|
|
133
|
+
color: #111827 !important;
|
|
134
|
+
background-color: #f9fafb !important;
|
|
135
|
+
padding: 20px !important;
|
|
136
|
+
text-align: center !important;
|
|
137
|
+
}
|
|
138
|
+
.code-block div {
|
|
139
|
+
font-size: 48px !important;
|
|
140
|
+
font-weight: 700 !important;
|
|
141
|
+
letter-spacing: 12px !important;
|
|
142
|
+
color: #111827 !important;
|
|
143
|
+
background-color: #f9fafb !important;
|
|
144
|
+
padding: 20px !important;
|
|
145
|
+
text-align: center !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.alert-box {
|
|
149
|
+
padding: 16px 24px;
|
|
150
|
+
border-left: 4px solid;
|
|
151
|
+
}
|
|
152
|
+
.alert-success {
|
|
153
|
+
background-color: #f0fdf4;
|
|
154
|
+
border-left-color: #22c55e;
|
|
155
|
+
color: #166534;
|
|
156
|
+
}
|
|
157
|
+
.alert-danger {
|
|
158
|
+
background-color: #fef2f2;
|
|
159
|
+
border-left-color: #ef4444;
|
|
160
|
+
color: #991b1b;
|
|
161
|
+
}
|
|
162
|
+
.alert-info {
|
|
163
|
+
background-color: #f0f9ff;
|
|
164
|
+
border-left-color: #0ea5e9;
|
|
165
|
+
color: #0c4a6e;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
a {
|
|
169
|
+
color: #4f46e5;
|
|
170
|
+
text-decoration: none;
|
|
171
|
+
}
|
|
172
|
+
a:hover {
|
|
173
|
+
text-decoration: underline;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
ul {
|
|
177
|
+
margin: 0;
|
|
178
|
+
padding-left: 20px;
|
|
179
|
+
color: #374151;
|
|
180
|
+
}
|
|
181
|
+
li {
|
|
182
|
+
margin-bottom: 8px;
|
|
183
|
+
}
|
|
184
|
+
</style>
|
|
185
|
+
|
|
186
|
+
</head>
|
|
187
|
+
<body style="word-spacing:normal;background-color:#f3f4f6;">
|
|
188
|
+
|
|
189
|
+
<div style="display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">{{ previewText }}</div>
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
<div
|
|
193
|
+
aria-label="{{ subject }}" aria-roledescription="email" style="background-color:#f3f4f6;" role="article" lang="und" dir="auto"
|
|
194
|
+
>
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
<!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#f3f4f6" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
<div style="background:#f3f4f6;background-color:#f3f4f6;margin:0px auto;max-width:600px;">
|
|
201
|
+
|
|
202
|
+
<table
|
|
203
|
+
align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#f3f4f6;background-color:#f3f4f6;width:100%;"
|
|
204
|
+
>
|
|
205
|
+
<tbody>
|
|
206
|
+
<tr>
|
|
207
|
+
<td
|
|
208
|
+
style="direction:ltr;font-size:0px;padding:0;text-align:center;"
|
|
209
|
+
>
|
|
210
|
+
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><![endif]-->
|
|
211
|
+
|
|
212
|
+
<!-- Header -->
|
|
213
|
+
<!--[if mso | IE]><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<div style="background:#ffffff;background-color:#ffffff;margin:0px auto;max-width:600px;">
|
|
217
|
+
|
|
218
|
+
<table
|
|
219
|
+
align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#ffffff;background-color:#ffffff;width:100%;"
|
|
220
|
+
>
|
|
221
|
+
<tbody>
|
|
222
|
+
<tr>
|
|
223
|
+
<td
|
|
224
|
+
style="direction:ltr;font-size:0px;padding:0;text-align:center;"
|
|
225
|
+
>
|
|
226
|
+
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]-->
|
|
227
|
+
|
|
228
|
+
<div
|
|
229
|
+
class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"
|
|
230
|
+
>
|
|
231
|
+
|
|
232
|
+
<table
|
|
233
|
+
border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#ffffff;vertical-align:top;" width="100%"
|
|
234
|
+
>
|
|
235
|
+
<tbody>
|
|
236
|
+
|
|
237
|
+
<tr>
|
|
238
|
+
<td
|
|
239
|
+
align="center" style="font-size:0px;padding:0;word-break:break-word;"
|
|
240
|
+
>
|
|
241
|
+
|
|
242
|
+
<p
|
|
243
|
+
style="border-top:solid 1px #e5e7eb;font-size:1px;margin:0px auto;width:100%;"
|
|
244
|
+
>
|
|
245
|
+
</p>
|
|
246
|
+
|
|
247
|
+
<!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #e5e7eb;font-size:1px;margin:0px auto;width:600px;" role="presentation" width="600px" ><tr><td style="height:0;line-height:0;">
|
|
248
|
+
</td></tr></table><![endif]-->
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
</td>
|
|
252
|
+
</tr>
|
|
253
|
+
|
|
254
|
+
</tbody>
|
|
255
|
+
</table>
|
|
256
|
+
|
|
257
|
+
</div>
|
|
258
|
+
|
|
259
|
+
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
260
|
+
</td>
|
|
261
|
+
</tr>
|
|
262
|
+
</tbody>
|
|
263
|
+
</table>
|
|
264
|
+
|
|
265
|
+
</div>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
<!--[if mso | IE]></td></tr></table></td></tr><![endif]-->
|
|
269
|
+
<!-- Logo/Header Section (Optional) -->{{#if logoUrl}}
|
|
270
|
+
<!--[if mso | IE]><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
<div style="background:#ffffff;background-color:#ffffff;margin:0px auto;max-width:600px;">
|
|
274
|
+
|
|
275
|
+
<table
|
|
276
|
+
align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#ffffff;background-color:#ffffff;width:100%;"
|
|
277
|
+
>
|
|
278
|
+
<tbody>
|
|
279
|
+
<tr>
|
|
280
|
+
<td
|
|
281
|
+
style="direction:ltr;font-size:0px;padding:32px 24px;text-align:center;"
|
|
282
|
+
>
|
|
283
|
+
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:552px;" ><![endif]-->
|
|
284
|
+
|
|
285
|
+
<div
|
|
286
|
+
class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"
|
|
287
|
+
>
|
|
288
|
+
|
|
289
|
+
<table
|
|
290
|
+
border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#ffffff;vertical-align:top;" width="100%"
|
|
291
|
+
>
|
|
292
|
+
<tbody>
|
|
293
|
+
|
|
294
|
+
<tr>
|
|
295
|
+
<td
|
|
296
|
+
align="center" style="font-size:0px;padding:0;word-break:break-word;"
|
|
297
|
+
>
|
|
298
|
+
|
|
299
|
+
<table
|
|
300
|
+
border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;"
|
|
301
|
+
>
|
|
302
|
+
<tbody>
|
|
303
|
+
<tr>
|
|
304
|
+
<td style="width:200px;">
|
|
305
|
+
|
|
306
|
+
<img
|
|
307
|
+
alt="{{appName}}" src="{{logoUrl}}" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="200" height="auto"
|
|
308
|
+
/>
|
|
309
|
+
|
|
310
|
+
</td>
|
|
311
|
+
</tr>
|
|
312
|
+
</tbody>
|
|
313
|
+
</table>
|
|
314
|
+
|
|
315
|
+
</td>
|
|
316
|
+
</tr>
|
|
317
|
+
|
|
318
|
+
</tbody>
|
|
319
|
+
</table>
|
|
320
|
+
|
|
321
|
+
</div>
|
|
322
|
+
|
|
323
|
+
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
324
|
+
</td>
|
|
325
|
+
</tr>
|
|
326
|
+
</tbody>
|
|
327
|
+
</table>
|
|
328
|
+
|
|
329
|
+
</div>
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
<!--[if mso | IE]></td></tr></table></td></tr><![endif]-->
|
|
333
|
+
{{/if}}<!-- Main Content Card -->
|
|
334
|
+
<!--[if mso | IE]><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
<div style="background:#ffffff;background-color:#ffffff;margin:0px auto;max-width:600px;">
|
|
338
|
+
|
|
339
|
+
<table
|
|
340
|
+
align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#ffffff;background-color:#ffffff;width:100%;"
|
|
341
|
+
>
|
|
342
|
+
<tbody>
|
|
343
|
+
<tr>
|
|
344
|
+
<td
|
|
345
|
+
style="direction:ltr;font-size:0px;padding:0 24px;text-align:center;"
|
|
346
|
+
>
|
|
347
|
+
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:552px;" ><![endif]-->
|
|
348
|
+
|
|
349
|
+
<div
|
|
350
|
+
class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"
|
|
351
|
+
>
|
|
352
|
+
|
|
353
|
+
<table
|
|
354
|
+
border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#ffffff;vertical-align:top;" width="100%"
|
|
355
|
+
>
|
|
356
|
+
<tbody>
|
|
357
|
+
<!-- Greeting (render if any name field is provided) -->{{#if fullName}}
|
|
358
|
+
<tr>
|
|
359
|
+
<td
|
|
360
|
+
align="left" class="heading" style="font-size:0px;padding:32px 24px 16px 24px;word-break:break-word;"
|
|
361
|
+
>
|
|
362
|
+
|
|
363
|
+
<div
|
|
364
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
365
|
+
>Hi {{ fullName }},</div>
|
|
366
|
+
|
|
367
|
+
</td>
|
|
368
|
+
</tr>
|
|
369
|
+
{{/if}}
|
|
370
|
+
{{#if firstName}}
|
|
371
|
+
<tr>
|
|
372
|
+
<td
|
|
373
|
+
align="left" class="heading" style="font-size:0px;padding:32px 24px 16px 24px;word-break:break-word;"
|
|
374
|
+
>
|
|
375
|
+
|
|
376
|
+
<div
|
|
377
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
378
|
+
>Hi {{ firstName }},</div>
|
|
379
|
+
|
|
380
|
+
</td>
|
|
381
|
+
</tr>
|
|
382
|
+
{{/if}}
|
|
383
|
+
{{#if lastName}}
|
|
384
|
+
<tr>
|
|
385
|
+
<td
|
|
386
|
+
align="left" class="heading" style="font-size:0px;padding:32px 24px 16px 24px;word-break:break-word;"
|
|
387
|
+
>
|
|
388
|
+
|
|
389
|
+
<div
|
|
390
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
391
|
+
>Hi {{ lastName }},</div>
|
|
392
|
+
|
|
393
|
+
</td>
|
|
394
|
+
</tr>
|
|
395
|
+
{{/if}}
|
|
396
|
+
{{#if userName}}
|
|
397
|
+
<tr>
|
|
398
|
+
<td
|
|
399
|
+
align="left" class="heading" style="font-size:0px;padding:32px 24px 16px 24px;word-break:break-word;"
|
|
400
|
+
>
|
|
401
|
+
|
|
402
|
+
<div
|
|
403
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
404
|
+
>Hi {{ userName }},</div>
|
|
405
|
+
|
|
406
|
+
</td>
|
|
407
|
+
</tr>
|
|
408
|
+
{{/if}}<!-- Content Slot - Child template injected here --><!-- Email Changed Alert (to OLD email) Email Content -->
|
|
409
|
+
<tr>
|
|
410
|
+
<td
|
|
411
|
+
align="left" style="font-size:0px;padding:0 24px 16px 24px;word-break:break-word;"
|
|
412
|
+
>
|
|
413
|
+
|
|
414
|
+
<div
|
|
415
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
416
|
+
>Your account email address has been changed.</div>
|
|
417
|
+
|
|
418
|
+
</td>
|
|
419
|
+
</tr>
|
|
420
|
+
|
|
421
|
+
<tr>
|
|
422
|
+
<td
|
|
423
|
+
align="left" class="text-small alert-box alert-warning" style="font-size:0px;padding:16px 24px;word-break:break-word;"
|
|
424
|
+
>
|
|
425
|
+
|
|
426
|
+
<div
|
|
427
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
428
|
+
>Security Alert: Email address changed</div>
|
|
429
|
+
|
|
430
|
+
</td>
|
|
431
|
+
</tr>
|
|
432
|
+
|
|
433
|
+
<tr>
|
|
434
|
+
<td
|
|
435
|
+
align="left" class="text-small font-bold" style="font-size:0px;padding:24px 24px 8px 24px;word-break:break-word;"
|
|
436
|
+
>
|
|
437
|
+
|
|
438
|
+
<div
|
|
439
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
440
|
+
>Change Details:</div>
|
|
441
|
+
|
|
442
|
+
</td>
|
|
443
|
+
</tr>
|
|
444
|
+
|
|
445
|
+
<tr>
|
|
446
|
+
<td
|
|
447
|
+
align="left" class="text-small" style="font-size:0px;padding:0 24px 8px 24px;word-break:break-word;"
|
|
448
|
+
>
|
|
449
|
+
|
|
450
|
+
<div
|
|
451
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
452
|
+
>Old Email (this address): {{userEmail}}</div>
|
|
453
|
+
|
|
454
|
+
</td>
|
|
455
|
+
</tr>
|
|
456
|
+
{{#if newEmail}}
|
|
457
|
+
<tr>
|
|
458
|
+
<td
|
|
459
|
+
align="left" class="text-small" style="font-size:0px;padding:0 24px 24px 24px;word-break:break-word;"
|
|
460
|
+
>
|
|
461
|
+
|
|
462
|
+
<div
|
|
463
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
464
|
+
>New Email: {{newEmail}}</div>
|
|
465
|
+
|
|
466
|
+
</td>
|
|
467
|
+
</tr>
|
|
468
|
+
{{/if}}{{#if deactivatedMFADevices}}
|
|
469
|
+
{{#gt deactivatedMFADevices 0}}
|
|
470
|
+
<tr>
|
|
471
|
+
<td
|
|
472
|
+
align="left" class="text-small alert-box alert-info" style="font-size:0px;padding:16px 24px;word-break:break-word;"
|
|
473
|
+
>
|
|
474
|
+
|
|
475
|
+
<div
|
|
476
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
477
|
+
>Note: {{deactivatedMFADevices}} email-based MFA device(s) were deactivated due to this change.</div>
|
|
478
|
+
|
|
479
|
+
</td>
|
|
480
|
+
</tr>
|
|
481
|
+
{{/gt}}
|
|
482
|
+
{{/if}}
|
|
483
|
+
<tr>
|
|
484
|
+
<td
|
|
485
|
+
align="left" class="text-small" style="font-size:0px;padding:24px 24px 8px 24px;word-break:break-word;"
|
|
486
|
+
>
|
|
487
|
+
|
|
488
|
+
<div
|
|
489
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
490
|
+
>What should I do?</div>
|
|
491
|
+
|
|
492
|
+
</td>
|
|
493
|
+
</tr>
|
|
494
|
+
|
|
495
|
+
<tr>
|
|
496
|
+
<td
|
|
497
|
+
align="left" class="text-small" style="font-size:0px;padding:0 24px 8px 24px;word-break:break-word;"
|
|
498
|
+
>
|
|
499
|
+
|
|
500
|
+
<div
|
|
501
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
502
|
+
>If you made this change, no action is required. This is just a security notification to let you know the email address for your account has been updated.</div>
|
|
503
|
+
|
|
504
|
+
</td>
|
|
505
|
+
</tr>
|
|
506
|
+
|
|
507
|
+
<tr>
|
|
508
|
+
<td
|
|
509
|
+
align="left" class="text-small" style="font-size:0px;padding:0 24px 24px 24px;word-break:break-word;"
|
|
510
|
+
>
|
|
511
|
+
|
|
512
|
+
<div
|
|
513
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
514
|
+
>Future notifications will be sent to the new email address.</div>
|
|
515
|
+
|
|
516
|
+
</td>
|
|
517
|
+
</tr>
|
|
518
|
+
{{#if supportEmail}}
|
|
519
|
+
<tr>
|
|
520
|
+
<td
|
|
521
|
+
align="left" class="text-small text-danger font-bold" style="font-size:0px;padding:0 24px 24px 24px;word-break:break-word;"
|
|
522
|
+
>
|
|
523
|
+
|
|
524
|
+
<div
|
|
525
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:16px;line-height:24px;text-align:left;color:#374151;"
|
|
526
|
+
>If you didn't make this change, please contact support immediately at <a href="mailto:{{supportEmail}}">{{supportEmail}}</a>. Your account may be compromised.</div>
|
|
527
|
+
|
|
528
|
+
</td>
|
|
529
|
+
</tr>
|
|
530
|
+
{{/if}}
|
|
531
|
+
</tbody>
|
|
532
|
+
</table>
|
|
533
|
+
|
|
534
|
+
</div>
|
|
535
|
+
|
|
536
|
+
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
537
|
+
</td>
|
|
538
|
+
</tr>
|
|
539
|
+
</tbody>
|
|
540
|
+
</table>
|
|
541
|
+
|
|
542
|
+
</div>
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
<!--[if mso | IE]></td></tr></table></td></tr><![endif]-->
|
|
546
|
+
<!-- Footer -->
|
|
547
|
+
<!--[if mso | IE]><tr><td class="" width="600px" ><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
<div style="background:#ffffff;background-color:#ffffff;margin:0px auto;max-width:600px;">
|
|
551
|
+
|
|
552
|
+
<table
|
|
553
|
+
align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#ffffff;background-color:#ffffff;width:100%;"
|
|
554
|
+
>
|
|
555
|
+
<tbody>
|
|
556
|
+
<tr>
|
|
557
|
+
<td
|
|
558
|
+
style="direction:ltr;font-size:0px;padding:24px;text-align:center;"
|
|
559
|
+
>
|
|
560
|
+
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:552px;" ><![endif]-->
|
|
561
|
+
|
|
562
|
+
<div
|
|
563
|
+
class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"
|
|
564
|
+
>
|
|
565
|
+
|
|
566
|
+
<table
|
|
567
|
+
border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#ffffff;vertical-align:top;" width="100%"
|
|
568
|
+
>
|
|
569
|
+
<tbody>
|
|
570
|
+
|
|
571
|
+
<tr>
|
|
572
|
+
<td
|
|
573
|
+
align="center" style="font-size:0px;padding:16px 0;word-break:break-word;"
|
|
574
|
+
>
|
|
575
|
+
|
|
576
|
+
<p
|
|
577
|
+
style="border-top:solid 1px #e5e7eb;font-size:1px;margin:0px auto;width:100%;"
|
|
578
|
+
>
|
|
579
|
+
</p>
|
|
580
|
+
|
|
581
|
+
<!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #e5e7eb;font-size:1px;margin:0px auto;width:552px;" role="presentation" width="552px" ><tr><td style="height:0;line-height:0;">
|
|
582
|
+
</td></tr></table><![endif]-->
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
</td>
|
|
586
|
+
</tr>
|
|
587
|
+
|
|
588
|
+
<tr>
|
|
589
|
+
<td
|
|
590
|
+
align="center" style="font-size:0px;padding:8px 0;word-break:break-word;"
|
|
591
|
+
>
|
|
592
|
+
|
|
593
|
+
<div
|
|
594
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:14px;line-height:24px;text-align:center;color:#6b7280;"
|
|
595
|
+
>© {{ currentYear }} {{ companyName }}. All rights reserved.</div>
|
|
596
|
+
|
|
597
|
+
</td>
|
|
598
|
+
</tr>
|
|
599
|
+
{{#if supportEmail}}
|
|
600
|
+
<tr>
|
|
601
|
+
<td
|
|
602
|
+
align="center" style="font-size:0px;padding:8px 0;word-break:break-word;"
|
|
603
|
+
>
|
|
604
|
+
|
|
605
|
+
<div
|
|
606
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:14px;line-height:24px;text-align:center;color:#6b7280;"
|
|
607
|
+
>Need help? <a href="mailto:{{supportEmail}}">Contact Support</a></div>
|
|
608
|
+
|
|
609
|
+
</td>
|
|
610
|
+
</tr>
|
|
611
|
+
{{/if}}<!-- Footer Disclaimer (custom or default) -->{{#if footerDisclaimer}}
|
|
612
|
+
<tr>
|
|
613
|
+
<td
|
|
614
|
+
align="center" style="font-size:0px;padding:16px 24px 8px 24px;word-break:break-word;"
|
|
615
|
+
>
|
|
616
|
+
|
|
617
|
+
<div
|
|
618
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:12px;line-height:18px;text-align:center;color:#6b7280;"
|
|
619
|
+
>{{ footerDisclaimer }}</div>
|
|
620
|
+
|
|
621
|
+
</td>
|
|
622
|
+
</tr>
|
|
623
|
+
{{else}}
|
|
624
|
+
<tr>
|
|
625
|
+
<td
|
|
626
|
+
align="center" style="font-size:0px;padding:16px 24px 8px 24px;word-break:break-word;"
|
|
627
|
+
>
|
|
628
|
+
|
|
629
|
+
<div
|
|
630
|
+
style="font-family:Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;font-size:12px;line-height:18px;text-align:center;color:#6b7280;"
|
|
631
|
+
>This email and any attachments are confidential and intended solely for the use of the individual or entity
|
|
632
|
+
to whom they are addressed. If you have received this email in error, please notify the sender immediately
|
|
633
|
+
and delete it from your system. Any unauthorized use, disclosure, copying, or distribution of this email is
|
|
634
|
+
strictly prohibited.</div>
|
|
635
|
+
|
|
636
|
+
</td>
|
|
637
|
+
</tr>
|
|
638
|
+
{{/if}}
|
|
639
|
+
</tbody>
|
|
640
|
+
</table>
|
|
641
|
+
|
|
642
|
+
</div>
|
|
643
|
+
|
|
644
|
+
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
645
|
+
</td>
|
|
646
|
+
</tr>
|
|
647
|
+
</tbody>
|
|
648
|
+
</table>
|
|
649
|
+
|
|
650
|
+
</div>
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
<!--[if mso | IE]></td></tr></table></td></tr></table><![endif]-->
|
|
654
|
+
</td>
|
|
655
|
+
</tr>
|
|
656
|
+
</tbody>
|
|
657
|
+
</table>
|
|
658
|
+
|
|
659
|
+
</div>
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
</div>
|
|
666
|
+
|
|
667
|
+
</body>
|
|
668
|
+
</html>
|
|
669
|
+
|