fiberx-backend-toolkit 0.1.5 → 0.1.6
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.
|
@@ -144,7 +144,7 @@ class EmailDeliveryProcessor {
|
|
|
144
144
|
email_sent = await this.renderLocalEmailPreview(record, full_email_render);
|
|
145
145
|
}
|
|
146
146
|
else {
|
|
147
|
-
email_sent = await this.sendEmail(record, mailer_config, rendered_subject,
|
|
147
|
+
email_sent = await this.sendEmail(record, mailer_config, rendered_subject, full_email_render, email_payload?.attachments);
|
|
148
148
|
}
|
|
149
149
|
if (!email_sent) {
|
|
150
150
|
this.logger.error(`Failed to Send email for Record ${record_id}`, { email_sent, recipient_email });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fiberx-backend-toolkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/index.js",
|