promailer 1.0.4 → 1.0.5

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 CHANGED
@@ -85,7 +85,6 @@ This function sends an email using the configured transporter.
85
85
 
86
86
  Returns a Promise that resolves to a success message with the email message ID if the email is sent successfully.
87
87
 
88
- ### Author : Kailash Mewada
89
88
 
90
89
  ---
91
90
  ## License
@@ -94,4 +93,5 @@ This project is licensed under the [ISC License](LICENSE).
94
93
 
95
94
  ---
96
95
 
97
- Please note that you can customize the package name, version, author, and description in the `package.json` file based on your preferences. If you have any further questions or need additional customization, feel free to ask!
96
+ Please note that you can customize the package name, version, author, and description in the `package.json` file based on your preferences. If you have any further questions or need additional customization, feel free to ask!
97
+ ### Author : Kailash Mewada
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promailer",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/sendMail.js CHANGED
@@ -1,6 +1,5 @@
1
1
  const nodemailer = require('nodemailer');
2
2
  let transporter;
3
- /// @ts-ignore mailConfig method takes a config object and creates a new transporter instance.
4
3
  /**
5
4
  * @ts-ignore mailConfig method takes a config object and creates a new transporter instance.
6
5
  * This is a description of your function.
@@ -56,7 +55,7 @@ function mailConfg(data) {
56
55
  });
57
56
  }
58
57
  /**
59
- * Sends an email using Nodemailer.
58
+ * Sends an email using promailer.
60
59
  *
61
60
  * @async
62
61
  * @param {string} from - The sender's email address.