Send SMS using SMS Horizon gateway in node Environment.
First you have to register in https://www.smshorizon.in/, then you will have a User Name, Api key and sender Id.
To install node-sms-horizon , you need node.js and npm.
Once you have that set-up, just run
npm install --save node-sms-horizon
in your project directory.
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)
})
- Subha Chandra Das - SubhaChandraDas
This project is licensed under the MIT License.