Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
ssl-wireless-sms-send
Advanced tools
SSL wireless is a third party service for sending SMS for Bangladeshi numbers. But their documentation isn’t adequate for nodeJS. Also it requires some extra work to send Bangla SMS. This npm package will remove those hassles.
You can use npm to install the package with the following code
npm install —save ssl-wireless-sms-send
There are 2 functionalities to use.
1. Sending SMS
It sends sms by using SSL wireless. You need to have the necessary credentials for SSL wireless . For sending SMS you have to call a function named send
. The send
method takes these following arguments. (Make sure order is maintained properly)
send(receiver, text, userName, password, bengaliSid, englishSid, cSMSId)
Argument | Description |
---|---|
receiver | The number you want to send SMS |
text | The body of the SMS |
userName | username provided by SSL wireless |
password | provided by SSL wireless |
bengaliSid | needed in case you want to send Bengali SMS |
englishSid | needed for sending only English SMS |
cSMSId | this is a unique id for each sms provided by you. It’s needed for uniquely identify the SMS |
Example SMS send :
const sms = require('ssl-wireless-sms-send');
sms.send('01671996355',
'This is test SMS',
'UserName',
'Password',
'BanglaSID',
'EnglishSID',
'12345678')
.then( response => {
console.log(response);
})
.catch( error => {
console.log(error);
});
2. Convert Bangla to Unicode It receives a Bengali string as a argument and converts it to unicode.
let unicode = bengaliToUnicode(banglaText)
This is created by saadnoor salehin, any feedback and PR is welcome.
FAQs
Send both Bengali and English SMS by SSL wireless
The npm package ssl-wireless-sms-send receives a total of 3 weekly downloads. As such, ssl-wireless-sms-send popularity was classified as not popular.
We found that ssl-wireless-sms-send demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.