aws-sns-sms
v1.0.2
Published
A AWS SNS wrapper to send message to a mobile number (useful to send OTP)
Downloads
1,458
Readme
aws-sns-sms
An AWS SNS Module to send msessage to a phone number.(Can be used to send OTP)
Installation
npm install aws-sns-sms
Usage
let sendMsg = require('aws-sns-sms');
let awsConfig = {
accessKeyId: '',
secretAccessKey: '',
region: ''
};
let msg = {
"message": "your OTP is 845214",
"sender": "VISHAL",
"phoneNumber": "+91XXXXXXXXXX" // phoneNumber along with country code
};
sendMsg(awsConfig, msg).then(data => {
console.log("Message sent");
})
.catch(err => {
consolr.log(err);
});