@flusys/nestjs-email 1.0.1 → 1.1.0
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/README.md +17 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Email Package Guide
|
|
2
2
|
|
|
3
3
|
> **Package:** `@flusys/nestjs-email`
|
|
4
|
+
> **Version:** 1.1.0
|
|
4
5
|
> **Type:** Email sending with templates, multiple providers, and multi-tenant support
|
|
5
6
|
|
|
6
7
|
## Table of Contents
|
|
@@ -534,7 +535,8 @@ import { EmailModule } from '@flusys/nestjs-email';
|
|
|
534
535
|
|
|
535
536
|
// Services
|
|
536
537
|
import {
|
|
537
|
-
|
|
538
|
+
EmailConfigService, // Module configuration service
|
|
539
|
+
EmailProviderConfigService, // CRUD for email provider configs
|
|
538
540
|
EmailTemplateService,
|
|
539
541
|
EmailSendService,
|
|
540
542
|
EmailDataSourceProvider,
|
|
@@ -548,6 +550,9 @@ import {
|
|
|
548
550
|
EmailTemplate,
|
|
549
551
|
EmailTemplateBase,
|
|
550
552
|
EmailTemplateWithCompany,
|
|
553
|
+
EmailCoreEntities,
|
|
554
|
+
EmailCompanyEntities,
|
|
555
|
+
getEmailEntitiesByConfig,
|
|
551
556
|
} from '@flusys/nestjs-email/entities';
|
|
552
557
|
|
|
553
558
|
// DTOs
|
|
@@ -558,6 +563,7 @@ import {
|
|
|
558
563
|
CreateEmailTemplateDto,
|
|
559
564
|
UpdateEmailTemplateDto,
|
|
560
565
|
EmailTemplateResponseDto,
|
|
566
|
+
EmailAttachmentDto,
|
|
561
567
|
SendEmailDto,
|
|
562
568
|
SendTemplateEmailDto,
|
|
563
569
|
TestEmailDto,
|
|
@@ -582,8 +588,17 @@ import {
|
|
|
582
588
|
SendGridProvider,
|
|
583
589
|
MailgunProvider,
|
|
584
590
|
} from '@flusys/nestjs-email/providers';
|
|
591
|
+
|
|
592
|
+
// Enums
|
|
593
|
+
import { EmailProviderTypeEnum } from '@flusys/nestjs-email/enums';
|
|
594
|
+
|
|
595
|
+
// Constants
|
|
596
|
+
import {
|
|
597
|
+
EMAIL_MODULE_OPTIONS,
|
|
598
|
+
DEFAULT_FROM_NAME,
|
|
599
|
+
} from '@flusys/nestjs-email/config';
|
|
585
600
|
```
|
|
586
601
|
|
|
587
602
|
---
|
|
588
603
|
|
|
589
|
-
**Last Updated:** 2026-02-
|
|
604
|
+
**Last Updated:** 2026-02-23
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flusys/nestjs-email",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Modular email package with SMTP, SendGrid, and Mailgun providers",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "fesm/index.js",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@flusys/nestjs-core": "1.0
|
|
108
|
-
"@flusys/nestjs-shared": "1.0
|
|
107
|
+
"@flusys/nestjs-core": "1.1.0",
|
|
108
|
+
"@flusys/nestjs-shared": "1.1.0"
|
|
109
109
|
}
|
|
110
110
|
}
|