leave-mailer-bot
v1.1.0
Published
A simple email notification utility for leave management systems using Nodemailer.
Maintainers
Readme
leave-mailer
A simple Node.js utility to send templated email notifications (leave requests, approvals, and welcome emails) using Nodemailer.
Installation
npm install leave-mailerEnvironment Variables
Set your Gmail credentials:
[email protected]
EMAIL_PASS=your-app-passwordUsage
const { sendEmailNotification, sendWelcomeEmail } = require("leave-mailer");
(async () => {
await sendWelcomeEmail({
name: "John Doe",
email: "[email protected]",
employeeId: "EMP123",
role: "Developer"
});
})();
