@astralibx/email-rule-engine 1.2.0 → 1.2.1
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 +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,19 +34,19 @@ app.use('/api/email-rules', engine.routes);
|
|
|
34
34
|
|
|
35
35
|
| Feature | Description | Docs |
|
|
36
36
|
|---------|-------------|------|
|
|
37
|
-
| Adapters | Connect to your data, delivery, and accounts | [adapters.md](docs/adapters.md) |
|
|
38
|
-
| Templates | MJML + Handlebars responsive email templates | [templates.md](docs/templates.md) |
|
|
39
|
-
| Rules | Condition-based targeting and automation | [rules.md](docs/rules.md) |
|
|
40
|
-
| Throttling | Per-user daily/weekly rate limits | [throttling.md](docs/throttling.md) |
|
|
41
|
-
| Send Window | Time-based execution control | [send-window.md](docs/send-window.md) |
|
|
42
|
-
| Delivery Delays | Natural send spread with jitter | [delivery-delays.md](docs/delivery-delays.md) |
|
|
43
|
-
| Progress Hooks | Live execution tracking callbacks | [progress-hooks.md](docs/progress-hooks.md) |
|
|
44
|
-
| SMTP Pooling | Efficient email delivery patterns | [smtp-pooling.md](docs/smtp-pooling.md) |
|
|
45
|
-
| Account Rotation | Multi-account sending with quotas | [account-rotation.md](docs/account-rotation.md) |
|
|
46
|
-
| Email Validation | MX checks and domain validation | [email-validation.md](docs/email-validation.md) |
|
|
47
|
-
| Execution Flow | How the runner processes rules | [execution-flow.md](docs/execution-flow.md) |
|
|
48
|
-
| API Routes | REST endpoint reference | [api-routes.md](docs/api-routes.md) |
|
|
49
|
-
| Config Reference | Full configuration options | [config-reference.md](docs/config-reference.md) |
|
|
37
|
+
| Adapters | Connect to your data, delivery, and accounts | [adapters.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/adapters.md) |
|
|
38
|
+
| Templates | MJML + Handlebars responsive email templates | [templates.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/templates.md) |
|
|
39
|
+
| Rules | Condition-based targeting and automation | [rules.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/rules.md) |
|
|
40
|
+
| Throttling | Per-user daily/weekly rate limits | [throttling.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/throttling.md) |
|
|
41
|
+
| Send Window | Time-based execution control | [send-window.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/send-window.md) |
|
|
42
|
+
| Delivery Delays | Natural send spread with jitter | [delivery-delays.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/delivery-delays.md) |
|
|
43
|
+
| Progress Hooks | Live execution tracking callbacks | [progress-hooks.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/progress-hooks.md) |
|
|
44
|
+
| SMTP Pooling | Efficient email delivery patterns | [smtp-pooling.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/smtp-pooling.md) |
|
|
45
|
+
| Account Rotation | Multi-account sending with quotas | [account-rotation.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/account-rotation.md) |
|
|
46
|
+
| Email Validation | MX checks and domain validation | [email-validation.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/email-validation.md) |
|
|
47
|
+
| Execution Flow | How the runner processes rules | [execution-flow.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/execution-flow.md) |
|
|
48
|
+
| API Routes | REST endpoint reference | [api-routes.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/api-routes.md) |
|
|
49
|
+
| Config Reference | Full configuration options | [config-reference.md](https://github.com/AstralibX/astralibx/blob/main/packages/email-rule-engine/docs/config-reference.md) |
|
|
50
50
|
|
|
51
51
|
## Prerequisites
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astralibx/email-rule-engine",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Rule-based email automation engine with MJML + Handlebars templates, throttling, and distributed locking",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|