quickly-notify
v0.0.6-alpha.0
Published
Quickly Notify is an agile and user-friendly service that allows developers to send push notifications and emails efficiently. Designed to simplify communication with users, Quickly Notify ensures quick integration and reliable delivery of notifications a
Downloads
310
Readme
Why
Quickly Notify is an agile and user-friendly service that allows developers to send push notifications and emails efficiently. Designed to simplify communication with users, Quickly Notify ensures quick integration and reliable delivery of notifications and emails.
.env (create this file).
# Default settings for the Google server
SMTP_HOST=smtp.gmail.com
# Default settings for the Google server
SMTP_PORT=465
# Default settings for the Google server
SMTP_SECURE=true
# This email must be registered as a developer in Gmail
SMTP_USER="[email protected]"
# Key assigned by Gmail
SMTP_PASS="1An3C0FZaNU"
Installation:
npm install quickly-notify
Use to library:
const { quickMailNotification } = require("quickly-notify");
Necessary parameters:
- Email for client (client).
- Who sends it (author).
- Type of service (message).
- This is the body of the email that will reach your clients (htmlConntent)
const client = "[email protected]"
const author= "Test Subject"
const message= "This is a test message for product change."
const htmlContent = "<h1>Example body email<h1/>";
Async context:
(async () => {
try {
const response = await quickMailNotification(
client,
author,
message,
htmlContent
);
return response;
} catch (error) {
console.error(error);
}
})();