gemcap-be-common 1.5.39 → 1.5.41
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
CHANGED
|
@@ -116,6 +116,7 @@ class NodemailerService {
|
|
|
116
116
|
this.sentryService.catchErrorBySentry(null, err);
|
|
117
117
|
throw err;
|
|
118
118
|
}
|
|
119
|
+
console.debug({ info });
|
|
119
120
|
console.log(info.envelope);
|
|
120
121
|
console.log(info.messageId);
|
|
121
122
|
console.log('Message sent: %s', info.messageId);
|
|
@@ -520,11 +521,9 @@ class NodemailerService {
|
|
|
520
521
|
.replace('${signature}', signature);
|
|
521
522
|
try {
|
|
522
523
|
this.transporter.sendMail({
|
|
523
|
-
from:
|
|
524
|
-
to:
|
|
525
|
-
|
|
526
|
-
// to: email.addresses,
|
|
527
|
-
// cc: `${senderEmail.title} <${senderEmail.address}>`,
|
|
524
|
+
from: `${senderEmail.title} <${senderEmail.address}>`,
|
|
525
|
+
to: email.addresses,
|
|
526
|
+
cc: `${senderEmail.title} <${senderEmail.address}>`,
|
|
528
527
|
subject: email.subject,
|
|
529
528
|
text: email.subject,
|
|
530
529
|
html: replacedData,
|
|
@@ -128,6 +128,7 @@ export class NodemailerService {
|
|
|
128
128
|
this.sentryService.catchErrorBySentry(null, err);
|
|
129
129
|
throw err;
|
|
130
130
|
}
|
|
131
|
+
console.debug({ info });
|
|
131
132
|
console.log(info.envelope);
|
|
132
133
|
console.log(info.messageId);
|
|
133
134
|
console.log('Message sent: %s', info.messageId);
|
|
@@ -596,11 +597,9 @@ export class NodemailerService {
|
|
|
596
597
|
.replace('${signature}', signature);
|
|
597
598
|
try {
|
|
598
599
|
this.transporter.sendMail({
|
|
599
|
-
from:
|
|
600
|
-
to:
|
|
601
|
-
|
|
602
|
-
// to: email.addresses,
|
|
603
|
-
// cc: `${senderEmail.title} <${senderEmail.address}>`,
|
|
600
|
+
from: `${senderEmail.title} <${senderEmail.address}>`,
|
|
601
|
+
to: email.addresses,
|
|
602
|
+
cc: `${senderEmail.title} <${senderEmail.address}>`,
|
|
604
603
|
subject: email.subject,
|
|
605
604
|
text: email.subject,
|
|
606
605
|
html: replacedData,
|