quick-mail 0.0.1 → 0.0.2
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 +15 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
A simple and quick email sending package for Node.js. Built on top of Nodemailer with sensible defaults for Gmail.
|
|
4
4
|
|
|
5
|
+
## Try it Online (best for frontend only servers)
|
|
6
|
+
|
|
7
|
+
**Don't have a Node.js server?** No problem! Use our web app to send emails instantly without any backend or server setup:
|
|
8
|
+
|
|
9
|
+
**[https://quick-mail-app-green.vercel.app/](https://quick-mail-app-green.vercel.app/)**
|
|
10
|
+
|
|
11
|
+
Perfect for:
|
|
12
|
+
|
|
13
|
+
- Frontend-only projects
|
|
14
|
+
- Quick email testing
|
|
15
|
+
- No server infrastructure needed
|
|
16
|
+
- Send emails directly from your browser
|
|
17
|
+
|
|
18
|
+
Create a free account and start sending emails without any hassle!
|
|
19
|
+
|
|
5
20
|
## Installation
|
|
6
21
|
|
|
7
22
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -145,7 +145,7 @@ var QuickMailClass = class {
|
|
|
145
145
|
async verify() {
|
|
146
146
|
if (!this.initialized || !this.transporter) {
|
|
147
147
|
throw new Error(
|
|
148
|
-
"QuickMail: Not initialized. Call QuickMail.init() first."
|
|
148
|
+
"QuickMail: Not initialized. Call QuickMail.init() first. or check your Credentials!"
|
|
149
149
|
);
|
|
150
150
|
}
|
|
151
151
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -109,7 +109,7 @@ var QuickMailClass = class {
|
|
|
109
109
|
async verify() {
|
|
110
110
|
if (!this.initialized || !this.transporter) {
|
|
111
111
|
throw new Error(
|
|
112
|
-
"QuickMail: Not initialized. Call QuickMail.init() first."
|
|
112
|
+
"QuickMail: Not initialized. Call QuickMail.init() first. or check your Credentials!"
|
|
113
113
|
);
|
|
114
114
|
}
|
|
115
115
|
try {
|
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quick-mail",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "quick mail sending package",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
6
|
+
"email",
|
|
7
|
+
"quick mail",
|
|
8
|
+
"send email",
|
|
9
|
+
"email service",
|
|
10
|
+
"no backend",
|
|
11
|
+
"email api",
|
|
12
|
+
"transactional email",
|
|
13
|
+
"smtp",
|
|
14
|
+
"email delivery"
|
|
9
15
|
],
|
|
10
16
|
"homepage": "https://github.com/Chetan-KK/quick-mail#readme",
|
|
11
17
|
"bugs": {
|