1.0.0 • Published 12 months ago

dhiraagu-bulk-sms v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Dhiraagu Bulk SMS

A package to log in to Dhiraagu Bulk SMS service using credentials stored in .env file.

Installation

npm install dhiraagu-bulk-sms 

Usage

1. Create a .env file in the root of your project and add your Dhiraagu credentials:

DHIRAAGU_USERNAME=your_username
DHIRAAGU_PASSWORD=your_password 

3. Use the package in your project:

const dhiraaguBulkSMS = require('dhiraagu-bulk-sms');

async function login() {
    try {
        const clientInfo = await dhiraaguBulkSMS.login();
        console.log('Login successful:', clientInfo);
    } catch (error) {
        console.error('Login failed:', error);
    }
}

login();

License

This project is licensed under the MIT License - see the LICENSE file for details.

1.0.0

12 months ago