@stacksjs/email 0.52.0 → 0.52.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/dist/index.mjs +4 -2
- package/package.json +21 -21
package/dist/index.mjs
CHANGED
|
@@ -25,7 +25,7 @@ const maizzleConfig = {
|
|
|
25
25
|
|
|
26
26
|
const email = notification.email;
|
|
27
27
|
const config = {
|
|
28
|
-
...email
|
|
28
|
+
...email?.build,
|
|
29
29
|
theme: {
|
|
30
30
|
screens: {
|
|
31
31
|
sm: "480px",
|
|
@@ -125,7 +125,9 @@ const service$5 = notification.email?.drivers.mailjet;
|
|
|
125
125
|
const provider$5 = new MailjetEmailProvider({
|
|
126
126
|
apiKey: service$5?.key || "",
|
|
127
127
|
apiSecret: service$5?.secret || "",
|
|
128
|
-
from: env$5?.from || ""
|
|
128
|
+
from: env$5?.from || "",
|
|
129
|
+
senderName: env$5?.from || ""
|
|
130
|
+
// look into what exactly this stands for
|
|
129
131
|
});
|
|
130
132
|
async function send$5(options, css) {
|
|
131
133
|
return send$8(options, provider$5, "Mailjet", css);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/email",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.52.
|
|
4
|
+
"version": "0.52.1",
|
|
5
5
|
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -48,30 +48,30 @@
|
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@maizzle/framework": "^4.4.4",
|
|
51
|
-
"@novu/emailjs": "^0.
|
|
52
|
-
"@novu/mailgun": "^0.
|
|
53
|
-
"@novu/mailjet": "^0.
|
|
54
|
-
"@novu/mandrill": "^0.
|
|
55
|
-
"@novu/netcore": "^0.
|
|
56
|
-
"@novu/node": "^0.
|
|
57
|
-
"@novu/nodemailer": "^0.
|
|
58
|
-
"@novu/postmark": "^0.
|
|
59
|
-
"@novu/sendgrid": "^0.
|
|
60
|
-
"@novu/ses": "^0.
|
|
61
|
-
"@novu/stateless": "^0.
|
|
62
|
-
"@stacksjs/cli": "0.52.
|
|
63
|
-
"@stacksjs/config": "0.52.
|
|
64
|
-
"@stacksjs/error-handling": "0.52.
|
|
65
|
-
"@stacksjs/types": "0.52.
|
|
51
|
+
"@novu/emailjs": "^0.15.0",
|
|
52
|
+
"@novu/mailgun": "^0.15.0",
|
|
53
|
+
"@novu/mailjet": "^0.15.0",
|
|
54
|
+
"@novu/mandrill": "^0.15.0",
|
|
55
|
+
"@novu/netcore": "^0.15.0",
|
|
56
|
+
"@novu/node": "^0.15.0",
|
|
57
|
+
"@novu/nodemailer": "^0.15.0",
|
|
58
|
+
"@novu/postmark": "^0.15.0",
|
|
59
|
+
"@novu/sendgrid": "^0.15.0",
|
|
60
|
+
"@novu/ses": "^0.15.0",
|
|
61
|
+
"@novu/stateless": "^0.15.0",
|
|
62
|
+
"@stacksjs/cli": "0.52.1",
|
|
63
|
+
"@stacksjs/config": "0.52.1",
|
|
64
|
+
"@stacksjs/error-handling": "0.52.1",
|
|
65
|
+
"@stacksjs/types": "0.52.1"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@stacksjs/cli": "0.52.
|
|
69
|
-
"@stacksjs/error-handling": "0.52.
|
|
70
|
-
"@stacksjs/logging": "0.52.
|
|
68
|
+
"@stacksjs/cli": "0.52.1",
|
|
69
|
+
"@stacksjs/error-handling": "0.52.1",
|
|
70
|
+
"@stacksjs/logging": "0.52.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@stacksjs/development": "0.52.
|
|
74
|
-
"@stacksjs/types": "0.52.
|
|
73
|
+
"@stacksjs/development": "0.52.1",
|
|
74
|
+
"@stacksjs/types": "0.52.1"
|
|
75
75
|
},
|
|
76
76
|
"scripts": {
|
|
77
77
|
"build": "unbuild",
|