You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

sendix-test

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sendix-test

A lightweight scheduler and mail sender library built with Node.js and TypeScript

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
126
Maintainers
1
Weekly downloads
 
Created
Source

🔔 Notix – Powerful & Flexible Reminder Scheduler

Notix হলো একটি কাস্টম বিল্ড করা, দ্রুত ও প্রফেশনাল reminder system NPM প্যাকেজ, যেটা দিয়ে তুমি Email, schedule করতে পারো – সম্পূর্ণভাবে তোমার নিজের কোড নিয়ন্ত্রণে।
এটা তৈরি করা হয়েছে zero-dependency mindset এবং modern ESM + CJS dual build সাপোর্ট নিয়ে।

🚀 Features

  • ✅ Custom-built scheduler
  • 📦 Dual format support: CommonJS (CJS) + ECMAScript Module (ESM)
  • 📧 Email reminder support (via nodemailer)
  • 🕒 Flexible time-based job scheduling
  • 💡 Beginner-friendly API design

📦 Installation

# npm
npm install sendix

# yarn
yarn add sendix

# bun
bun add sendix



// ESM import
import { sendix } from 'notix';

// Or for CommonJS
// const { sendix } = require('notix');


// Add a reminder
sendix({
  type: "once",
  schedule: [2025, 12, 19, 5, 30, 0, 0],
  mail: {
    auth: {
      user: "authergmail@gmail.com",
      pass: "app-password",
    },
    from: 'yourgmail@gmail.com',
    to: "example@gmail.com",
    subject: "Sendix",
    message: "Hello from Sendix!",
    html: "<h1>hellow world!</h1>",
});

Keywords

scheduler

FAQs

Package last updated on 19 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts