sms-sending

SMS sending module

Usage no npm install needed!

<script type="module">
  import smsSending from 'https://cdn.skypack.dev/sms-sending';
</script>

README

sms-sending

Sms sending module

Install

npm install sms-sending --save

Using

In your config/application.json

{
    "sms": {
        "token": "app token",
        "sms_server": "link sms server"
    }
}

In your controller

var sms = require('sms-sending');

sms.send('text message', 'phone number');