@stacksjs/email 0.44.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.
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) 2022 Open Web Foundation
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ # Stacks Notifications
2
+
3
+ wip
4
+
5
+ ## โ˜˜๏ธ Features
6
+
7
+ wip
8
+
9
+ - โšก๏ธ
10
+
11
+ wip
12
+
13
+ ## ๐Ÿค– Usage
14
+
15
+ wip
16
+
17
+ ```bash
18
+ pnpm i -D @stacksjs/notifications
19
+ ```
20
+
21
+ Now, you can use it in your project:
22
+
23
+ ```js
24
+ import notifications from '@stacksjs/notifications'
25
+
26
+ // wip
27
+ ```
28
+
29
+ ## ๐Ÿค– Drivers
30
+
31
+ ### Email
32
+
33
+ - Sendgrid
34
+ - Mailgun
35
+ - Mailjet
36
+ - Netcore
37
+ - Nodemailer
38
+ - Post Mark
39
+ - Ses
40
+ - Mandrill
41
+ - EmailJS
42
+
43
+ ### SMS
44
+
45
+ - Twilio
46
+ - Nexmo
47
+ - Gupshup
48
+ - Plivo
49
+ - SMS77
50
+ - SNS
51
+ - Telnyx
52
+ - Termii
53
+
54
+ ### Chat
55
+
56
+ - Discord
57
+ - Slack
58
+
59
+ Learn more in the docs.
60
+
61
+ ## ๐Ÿงช Testing
62
+
63
+ ```bash
64
+ pnpm test
65
+ ```
66
+
67
+ ## ๐Ÿ“ˆ Changelog
68
+
69
+ Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
70
+
71
+ ## ๐Ÿ’ช๐Ÿผ Contributing
72
+
73
+ Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
74
+
75
+ ## ๐Ÿ Community
76
+
77
+ For help, discussion about best practices, or any other conversation that would benefit from being searchable:
78
+
79
+ [Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
80
+
81
+ For casual chit-chat with others using this package:
82
+
83
+ [Join the Stacks Discord Server](https://discord.ow3.org)
84
+
85
+ ## ๐Ÿ“„ License
86
+
87
+ The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
88
+
89
+ Made with โค๏ธ
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@stacksjs/email",
3
+ "type": "module",
4
+ "version": "0.44.6",
5
+ "packageManager": "pnpm@7.18.2",
6
+ "description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
7
+ "author": "Chris Breuer",
8
+ "license": "MIT",
9
+ "funding": "https://github.com/sponsors/chrisbbreuer",
10
+ "homepage": "https://github.com/stacksjs/stacks/tree/main/.stacks/core/email#readme",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/stacksjs/stacks.git",
14
+ "directory": "./.stacks/core/email"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/stacksjs/stacks/issues"
18
+ },
19
+ "keywords": [
20
+ "email",
21
+ "ses",
22
+ "aws",
23
+ "maizzle",
24
+ "stacks"
25
+ ],
26
+ "main": "dist/index.mjs",
27
+ "module": "dist/index.mjs",
28
+ "types": "dist/index.d.ts",
29
+ "contributors": [
30
+ "Chris Breuer <chris@ow3.org>"
31
+ ],
32
+ "files": [
33
+ "dist",
34
+ "README.md"
35
+ ],
36
+ "engines": {
37
+ "node": ">=v18.12.1",
38
+ "pnpm": ">=7.18.2"
39
+ },
40
+ "peerDependencies": {
41
+ "@stacksjs/cli": "0.44.6",
42
+ "@stacksjs/config": "0.44.6",
43
+ "@stacksjs/error-handling": "0.44.6",
44
+ "@stacksjs/types": "0.44.6"
45
+ },
46
+ "devDependencies": {
47
+ "mkdist": "^1.0.0",
48
+ "typescript": "^4.9.4",
49
+ "@stacksjs/testing": "0.44.6"
50
+ },
51
+ "scripts": {
52
+ "build": "mkdist -d",
53
+ "dev": "mkdist -d",
54
+ "typecheck": "tsc --noEmit"
55
+ }
56
+ }