@visulima/email 1.0.0-alpha.2 → 1.0.0-alpha.4
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/CHANGELOG.md +31 -0
- package/README.md +35 -16
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## @visulima/email [1.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.3...@visulima/email@1.0.0-alpha.4) (2025-12-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/disposable-email-domains:** upgraded to 1.0.0-alpha.3
|
|
7
|
+
|
|
8
|
+
## @visulima/email [1.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.2...@visulima/email@1.0.0-alpha.3) (2025-12-07)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* change min node version to 22.13
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* add new package image, fixed readme rendering on npm, fixed building of packages ([b790ba2](https://github.com/visulima/visulima/commit/b790ba253ea07fef83528fd822a678facf021b5f))
|
|
17
|
+
* update Node.js engine version requirement to >=22.13 in multiple package.json files for improved compatibility ([b828e9a](https://github.com/visulima/visulima/commit/b828e9aeaebfc798eecddccd90e6ec7560c6d36a))
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* moved all packages into groups ([0615e9d](https://github.com/visulima/visulima/commit/0615e9d14a8a886e11da529ce150cf31ca973c10))
|
|
22
|
+
* update @anolilab/semantic-release-pnpm and @anolilab/semantic-release-preset to versions 3.2.2 and 12.1.2 across multiple package.json files for improved compatibility ([3921626](https://github.com/visulima/visulima/commit/3921626141fe5da398749bf0ba675f1596f18afb))
|
|
23
|
+
* update dependencies across multiple packages to improve compatibility and performance, including upgrading `@anolilab/semantic-release-pnpm` and `@anolilab/semantic-release-preset` to versions 3.2.0 and 12.1.0 respectively, and updating `react`, `react-dom`, and `next` versions to 19.2.1 and 16.0.7 in various package.json files ([aee8fcd](https://github.com/visulima/visulima/commit/aee8fcd796ae9b8d055903260e7150996ea9f53d))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* **@visulima/disposable-email-domains:** upgraded to 1.0.0-alpha.2
|
|
29
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.1
|
|
30
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.1
|
|
31
|
+
|
|
1
32
|
## @visulima/email [1.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.1...@visulima/email@1.0.0-alpha.2) (2025-12-02)
|
|
2
33
|
|
|
3
34
|
### Features
|
package/README.md
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
2
|
+
|
|
3
|
+
<a href="https://www.anolilab.com/open-source" align="center">
|
|
4
|
+
|
|
5
|
+
<img src="__assets__/package-og.svg" alt="email" />
|
|
6
|
+
|
|
7
|
+
</a>
|
|
8
|
+
|
|
9
|
+
<h3 align="center">A comprehensive email library with multi-provider support, crypto utilities, and template engines</h3>
|
|
10
|
+
|
|
11
|
+
<!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
7
12
|
|
|
8
13
|
<br />
|
|
9
14
|
|
|
10
15
|
<div align="center">
|
|
11
16
|
|
|
12
|
-
[![typescript-image]
|
|
17
|
+
[![typescript-image][typescript-badge]][typescript-url]
|
|
18
|
+
[![mit licence][license-badge]][license]
|
|
19
|
+
[![npm downloads][npm-downloads-badge]][npm-downloads]
|
|
20
|
+
[![Chat][chat-badge]][chat]
|
|
21
|
+
[![PRs Welcome][prs-welcome-badge]][prs-welcome]
|
|
13
22
|
|
|
14
23
|
</div>
|
|
15
24
|
|
|
@@ -128,7 +137,7 @@ await writeFile("draft.eml", eml);
|
|
|
128
137
|
|
|
129
138
|
### Using Different Providers
|
|
130
139
|
|
|
131
|
-
|
|
140
|
+
```typescript
|
|
132
141
|
import { createMail, MailMessage, smtpProvider, resendProvider } from "@visulima/email";
|
|
133
142
|
|
|
134
143
|
// SMTP provider
|
|
@@ -157,6 +166,7 @@ const message = new MailMessage()
|
|
|
157
166
|
.html("<h1>Hello World</h1>");
|
|
158
167
|
|
|
159
168
|
await resendMail.send(message);
|
|
169
|
+
```
|
|
160
170
|
|
|
161
171
|
### Direct Email Sending
|
|
162
172
|
|
|
@@ -1388,14 +1398,23 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
1388
1398
|
- [Daniel Bannert](https://github.com/prisis)
|
|
1389
1399
|
- [All Contributors](https://github.com/visulima/visulima/graphs/contributors)
|
|
1390
1400
|
|
|
1401
|
+
## Made with ❤️ at Anolilab
|
|
1402
|
+
|
|
1403
|
+
This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
|
|
1404
|
+
|
|
1391
1405
|
## License
|
|
1392
1406
|
|
|
1393
|
-
The visulima email is open-sourced software licensed under the [MIT][license
|
|
1407
|
+
The visulima email is open-sourced software licensed under the [MIT][license]
|
|
1408
|
+
|
|
1409
|
+
<!-- badges -->
|
|
1394
1410
|
|
|
1395
|
-
[
|
|
1396
|
-
[
|
|
1397
|
-
[
|
|
1398
|
-
[
|
|
1399
|
-
[
|
|
1400
|
-
[
|
|
1401
|
-
|
|
1411
|
+
[license-badge]: https://img.shields.io/npm/l/@visulima/email?style=for-the-badge
|
|
1412
|
+
[license]: https://github.com/visulima/visulima/blob/main/LICENSE
|
|
1413
|
+
[npm-downloads-badge]: https://img.shields.io/npm/dm/@visulima/email?style=for-the-badge
|
|
1414
|
+
[npm-downloads]: https://www.npmjs.com/package/@visulima/email
|
|
1415
|
+
[prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
|
|
1416
|
+
[prs-welcome]: https://github.com/visulima/visulima/blob/main/.github/CONTRIBUTING.md
|
|
1417
|
+
[chat-badge]: https://img.shields.io/discord/932323359193186354.svg?style=for-the-badge
|
|
1418
|
+
[chat]: https://discord.gg/TtFJY8xkFK
|
|
1419
|
+
[typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
1420
|
+
[typescript-url]: https://www.typescriptlang.org/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/email",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.4",
|
|
4
4
|
"description": "A comprehensive email library with multi-provider support, crypto utilities, and template engines",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"repository": {
|
|
56
56
|
"type": "git",
|
|
57
57
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
58
|
-
"directory": "packages/email"
|
|
58
|
+
"directory": "packages/email/email"
|
|
59
59
|
},
|
|
60
60
|
"funding": [
|
|
61
61
|
{
|
|
@@ -263,10 +263,10 @@
|
|
|
263
263
|
"CHANGELOG.md"
|
|
264
264
|
],
|
|
265
265
|
"dependencies": {
|
|
266
|
-
"@visulima/disposable-email-domains": "1.0.0-alpha.
|
|
266
|
+
"@visulima/disposable-email-domains": "1.0.0-alpha.3",
|
|
267
267
|
"html-to-text": "^9.0.5",
|
|
268
|
-
"ical-generator": "^
|
|
269
|
-
"lru-cache": "^11.2.
|
|
268
|
+
"ical-generator": "^10.0.0",
|
|
269
|
+
"lru-cache": "^11.2.4",
|
|
270
270
|
"mime": "^4.1.0"
|
|
271
271
|
},
|
|
272
272
|
"peerDependencies": {
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
}
|
|
307
307
|
},
|
|
308
308
|
"engines": {
|
|
309
|
-
"node": ">=22.
|
|
309
|
+
"node": ">=22.13 <=25.x"
|
|
310
310
|
},
|
|
311
311
|
"publishConfig": {
|
|
312
312
|
"access": "public",
|