gemcap-be-common 1.3.41 → 1.3.43
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/package.json +1 -1
- package/public/emails/auditor-reset.html +13 -6
- package/public/emails/black_feather/auditor-reset.html +13 -6
- package/public/emails/gemcap/auditor-reset.html +13 -6
- package/services/nodemailer.service.js +3 -3
- package/services/nodemailer.service.ts +3 -3
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -3,12 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
<p>Dear ${AUDITOR_NAME}</p>
|
|
5
5
|
|
|
6
|
-
<p>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
<p>
|
|
7
|
+
You have been assigned the role of auditor/examiner for a new Black Feather prospect: <span style="font-weight: bold">${PROSPECT_NAME}</span>.
|
|
8
|
+
</p>
|
|
9
|
+
<p>
|
|
10
|
+
Here is the link to the new prospect and other Black Feather prospects that you are currently assigned to. Only this
|
|
11
|
+
email address can use this <a href="https://analytics.traxabl.com/auditors">link</a>.
|
|
12
|
+
</p>
|
|
13
|
+
<p>
|
|
14
|
+
When logging in, you will be requested to enter a one-time-password below.
|
|
15
|
+
</p>
|
|
16
|
+
<p>
|
|
17
|
+
Your password is ${PASSWORD}.
|
|
18
|
+
</p>
|
|
12
19
|
|
|
13
20
|
${signature}
|
|
14
21
|
|
|
@@ -3,12 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
<p>Dear ${AUDITOR_NAME}</p>
|
|
5
5
|
|
|
6
|
-
<p>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
<p>
|
|
7
|
+
You have been assigned the role of auditor/examiner for a new Black Feather prospect: <span style="font-weight: bold">${PROSPECT_NAME}</span>.
|
|
8
|
+
</p>
|
|
9
|
+
<p>
|
|
10
|
+
Here is the link to the new prospect and other Black Feather prospects that you are currently assigned to. Only this
|
|
11
|
+
email address can use this <a href="https://analytics.traxabl.com/auditors">link</a>.
|
|
12
|
+
</p>
|
|
13
|
+
<p>
|
|
14
|
+
When logging in, you will be requested to enter a one-time-password below.
|
|
15
|
+
</p>
|
|
16
|
+
<p>
|
|
17
|
+
Your password is ${PASSWORD}.
|
|
18
|
+
</p>
|
|
12
19
|
|
|
13
20
|
${signature}
|
|
14
21
|
|
|
@@ -3,12 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
<p>Dear ${AUDITOR_NAME}</p>
|
|
5
5
|
|
|
6
|
-
<p>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
<p>
|
|
7
|
+
You have been assigned the role of auditor/examiner for a new Black Feather prospect: <span style="font-weight: bold">${PROSPECT_NAME}</span>.
|
|
8
|
+
</p>
|
|
9
|
+
<p>
|
|
10
|
+
Here is the link to the new prospect and other Black Feather prospects that you are currently assigned to. Only this
|
|
11
|
+
email address can use this <a href="https://analytics.traxabl.com/auditors">link</a>.
|
|
12
|
+
</p>
|
|
13
|
+
<p>
|
|
14
|
+
When logging in, you will be requested to enter a one-time-password below.
|
|
15
|
+
</p>
|
|
16
|
+
<p>
|
|
17
|
+
Your password is ${PASSWORD}.
|
|
18
|
+
</p>
|
|
12
19
|
|
|
13
20
|
${signature}
|
|
14
21
|
|
|
@@ -654,7 +654,7 @@ class NodemailerService {
|
|
|
654
654
|
try {
|
|
655
655
|
this.transporter.sendMail({
|
|
656
656
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
657
|
-
to: [...
|
|
657
|
+
to: [...email.addresses],
|
|
658
658
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
659
659
|
subject: email.subject,
|
|
660
660
|
text: replacedData,
|
|
@@ -683,7 +683,7 @@ class NodemailerService {
|
|
|
683
683
|
try {
|
|
684
684
|
this.transporter.sendMail({
|
|
685
685
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
686
|
-
to: [...
|
|
686
|
+
to: [...email.addresses],
|
|
687
687
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
688
688
|
subject: email.subject,
|
|
689
689
|
text: replacedData,
|
|
@@ -708,7 +708,7 @@ class NodemailerService {
|
|
|
708
708
|
try {
|
|
709
709
|
this.transporter.sendMail({
|
|
710
710
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
711
|
-
to: [
|
|
711
|
+
to: [replacements.email],
|
|
712
712
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
713
713
|
subject: replacements.subject,
|
|
714
714
|
text: replacedData,
|
|
@@ -741,7 +741,7 @@ export class NodemailerService {
|
|
|
741
741
|
try {
|
|
742
742
|
this.transporter.sendMail({
|
|
743
743
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
744
|
-
to: [...
|
|
744
|
+
to: [...email.addresses],
|
|
745
745
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
746
746
|
subject: email.subject,
|
|
747
747
|
text: replacedData,
|
|
@@ -776,7 +776,7 @@ export class NodemailerService {
|
|
|
776
776
|
try {
|
|
777
777
|
this.transporter.sendMail({
|
|
778
778
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
779
|
-
to: [...
|
|
779
|
+
to: [...email.addresses],
|
|
780
780
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
781
781
|
subject: email.subject,
|
|
782
782
|
text: replacedData,
|
|
@@ -807,7 +807,7 @@ export class NodemailerService {
|
|
|
807
807
|
try {
|
|
808
808
|
this.transporter.sendMail({
|
|
809
809
|
from: this.getSender(ESenderType.NEW_BUSINESS),
|
|
810
|
-
to: [
|
|
810
|
+
to: [replacements.email],
|
|
811
811
|
cc: this.getSender(ESenderType.NEW_BUSINESS, `: ${replacements.prospectName}`),
|
|
812
812
|
subject: replacements.subject,
|
|
813
813
|
text: replacedData,
|