nolimit-x 1.0.52 → 1.0.53
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/package.json +5 -5
- package/templates/config.json +18 -18
- package/templates/emails.txt +2 -3
- package/templates/messages.html +3 -3
- package/templates/senders.txt +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nolimit-x",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.53",
|
|
4
4
|
"description": "Advanced email sender ",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@nolimit-x/darwin-arm64": "1.0.
|
|
23
|
-
"@nolimit-x/darwin-x64": "1.0.
|
|
24
|
-
"@nolimit-x/linux-x64": "1.0.
|
|
25
|
-
"@nolimit-x/win32-x64": "1.0.
|
|
22
|
+
"@nolimit-x/darwin-arm64": "1.0.53",
|
|
23
|
+
"@nolimit-x/darwin-x64": "1.0.53",
|
|
24
|
+
"@nolimit-x/linux-x64": "1.0.53",
|
|
25
|
+
"@nolimit-x/win32-x64": "1.0.53"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"cheerio": "^1.1.0",
|
package/templates/config.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"smtp": [
|
|
3
3
|
{
|
|
4
|
-
"host": "smtp.
|
|
4
|
+
"host": "smtp.example.com",
|
|
5
5
|
"port": 587,
|
|
6
6
|
"secure": false,
|
|
7
|
-
"user": "
|
|
8
|
-
"pass": "
|
|
7
|
+
"user": "your-email@example.com",
|
|
8
|
+
"pass": "your-password"
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"emails_list": {
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"path": "messages.html"
|
|
19
19
|
},
|
|
20
20
|
"configurations": {
|
|
21
|
-
"from_name": "
|
|
22
|
-
"from_email": "
|
|
23
|
-
"mail_subject": "
|
|
24
|
-
"reply_to": "
|
|
21
|
+
"from_name": "Your Name",
|
|
22
|
+
"from_email": "",
|
|
23
|
+
"mail_subject": "Your Subject",
|
|
24
|
+
"reply_to": "",
|
|
25
25
|
"mail_priority": "3",
|
|
26
|
+
"multiple_senders": true,
|
|
27
|
+
"subject_rotation": true,
|
|
26
28
|
"use_attachment": false,
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"Importance": "high"
|
|
34
|
-
},
|
|
29
|
+
"qr_code": false,
|
|
30
|
+
"qr_link": "",
|
|
31
|
+
"qr_in_attachment": false,
|
|
32
|
+
"direct_mx": false,
|
|
33
|
+
"use_nodemailer": false,
|
|
34
|
+
"raw_smtp": false,
|
|
35
35
|
"agent": {
|
|
36
36
|
"is_multi_thread": false,
|
|
37
|
+
"message_to_pdf": false,
|
|
37
38
|
"how_many_thread": 1
|
|
38
39
|
},
|
|
39
40
|
"system": {
|
|
40
41
|
"delay_sending": false,
|
|
41
|
-
"delay_sending_seconds":
|
|
42
|
-
"
|
|
43
|
-
"turbo_mode": true
|
|
42
|
+
"delay_sending_seconds": 5,
|
|
43
|
+
"turbo_mode": false
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"attachments": [
|
package/templates/emails.txt
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
# List of recipient emails
|
|
2
|
-
|
|
3
|
-
recipient2@example.com
|
|
1
|
+
# List of recipient emails (one per line)
|
|
2
|
+
# Example: target@example.com
|
package/templates/messages.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<html>
|
|
2
2
|
<body>
|
|
3
|
-
<
|
|
4
|
-
<
|
|
5
|
-
<p>
|
|
3
|
+
<p>Hello,</p>
|
|
4
|
+
<p>Your message content goes here.</p>
|
|
5
|
+
<p>Edit this file with your HTML email template.</p>
|
|
6
6
|
</body>
|
|
7
7
|
</html>
|
package/templates/senders.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# List of sender emails
|
|
2
|
-
|
|
1
|
+
# List of sender emails (one per line)
|
|
2
|
+
# Example: sender@yourdomain.com
|