mailcub 2.0.8 → 2.0.9
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Mailcub Package Documentation
|
|
2
|
-
Version: 2.0.
|
|
2
|
+
Version: 2.0.9
|
|
3
3
|
|
|
4
4
|
## Introduction
|
|
5
5
|
Mailcub is an npm package that enables you to send emails using a simple and straightforward interface. It provides a function to send emails with the following features:
|
|
@@ -38,7 +38,7 @@ const emailBody = {
|
|
|
38
38
|
receiver: 'user@example.com',
|
|
39
39
|
subject: 'Subject',
|
|
40
40
|
html: '<h1>Hello</h1>',
|
|
41
|
-
attachment:
|
|
41
|
+
attachment: attachment_file
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
const secretKey = 'your-secret-key';
|
package/package.json
CHANGED