@breadstone/archipel-platform-mailing 0.0.22 → 0.0.23
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
CHANGED
|
@@ -66,7 +66,7 @@ Set `MAIL_DELIVERY_STRATEGY` to one of: `smtp`, `postmark`, `resend`, `sendgrid`
|
|
|
66
66
|
## Features
|
|
67
67
|
|
|
68
68
|
- **Multi-provider**: Switch between SMTP, Postmark, Resend, SendGrid, or Mailgun via config
|
|
69
|
-
- **Subpath imports**: Each provider lives in its own subpath
|
|
69
|
+
- **Subpath imports**: Each provider lives in its own subpath - install only the SDK you need
|
|
70
70
|
- **Template engines**: File-based or blob-based template fetching with variable substitution
|
|
71
71
|
- **Health checks**: Built-in `MailHealthIndicator` for readiness probes
|
|
72
72
|
- **Email verification**: `MailVerificationService` for address verification flows
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/archipel-platform-mailing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "Email delivery with strategy-based transport and template engines for NestJS applications.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -91,11 +91,11 @@
|
|
|
91
91
|
"README.md"
|
|
92
92
|
],
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"@breadstone/archipel-platform-blob-storage": "0.0.
|
|
95
|
-
"@breadstone/archipel-platform-configuration": "0.0.
|
|
96
|
-
"@breadstone/archipel-platform-core": "0.0.
|
|
97
|
-
"@breadstone/archipel-platform-health": "0.0.
|
|
98
|
-
"@breadstone/archipel-platform-resources": "0.0.
|
|
94
|
+
"@breadstone/archipel-platform-blob-storage": "0.0.23",
|
|
95
|
+
"@breadstone/archipel-platform-configuration": "0.0.23",
|
|
96
|
+
"@breadstone/archipel-platform-core": "0.0.23",
|
|
97
|
+
"@breadstone/archipel-platform-health": "0.0.23",
|
|
98
|
+
"@breadstone/archipel-platform-resources": "0.0.23",
|
|
99
99
|
"tslib": "2.8.1"
|
|
100
100
|
},
|
|
101
101
|
"peerDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConfigService } from '@breadstone/archipel-platform-configuration';
|
|
2
2
|
/**
|
|
3
3
|
* Verifies SMTP server connectivity. Does **not** validate individual email
|
|
4
|
-
* addresses
|
|
4
|
+
* addresses - only checks whether the configured SMTP transport is reachable.
|
|
5
5
|
*
|
|
6
6
|
* @public
|
|
7
7
|
* @deprecated Renamed to `SmtpConnectionVerifier` in a future release to better
|
|
@@ -11,7 +11,7 @@ const env_1 = require("../env");
|
|
|
11
11
|
// #endregion
|
|
12
12
|
/**
|
|
13
13
|
* Verifies SMTP server connectivity. Does **not** validate individual email
|
|
14
|
-
* addresses
|
|
14
|
+
* addresses - only checks whether the configured SMTP transport is reachable.
|
|
15
15
|
*
|
|
16
16
|
* @public
|
|
17
17
|
* @deprecated Renamed to `SmtpConnectionVerifier` in a future release to better
|