1.2.1 • Published 5 years ago

node-sms-horizon v1.2.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

node-sms-horizon

Send SMS using SMS Horizon gateway in node Environment.

Getting Started

First you have to register in https://www.smshorizon.in/, then you will have a User Name, Api key and sender Id.

Prerequisites

To install node-sms-horizon , you need node.js and npm.

Installing

Once you have that set-up, just run

npm install --save node-sms-horizon

in your project directory.

Usage

node-sms-horizon send_sms(senderOption, recieverOption) returns promise and needs two parameters 'senderOption' and 'recieverOption'.

const send = require("node-sms-horizon")({
    user_name : // Use your User name from sms-horizon. 
    api_key : // You will get this api key after registration. 
    sender_id : //you have to create a sender Id in you sms-horizon portal. 
});

send('receiver phone no.',"message to send").then(response => {
    console.log(response)
}).catch(error => {
    console.error(error)
})

Authors

License

This project is licensed under the MIT License.

1.2.1

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago