quick-mail
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "quick-mail", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "quick-mail is a powerful and flexible email automation library designed for Javascript applications. It enables developers to easily send bulk emails with variant subjects and content using different or customized HTML templates. This library simplifies the process of managing and automating email campaigns, making it ideal for marketing, notifications, and other automated email tasks.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,3 +9,3 @@ # quick-mail | ||
````bash | ||
```bash | ||
npm install quick-mail | ||
@@ -15,5 +15,4 @@ | ||
```bash | ||
yarn add quick-mail | ||
```` | ||
``` | ||
@@ -24,2 +23,4 @@ ## Usage | ||
```bash | ||
const quickMail = require("quick-mail"); | ||
@@ -33,3 +34,3 @@ | ||
password: "your-email-password", | ||
html: ` <!DOCTYPE html> | ||
html: ` <!DOCTYPE html> | ||
<html> | ||
@@ -60,4 +61,3 @@ <head> | ||
</body> | ||
</html> | ||
` | ||
</html>` | ||
}).then(response => { | ||
@@ -68,1 +68,3 @@ console.log('Email sent:', response); | ||
}); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3411
65