Skip to content

Nodejs module for communicating with MOBtexting enterprise Messaging and Verify Services

Notifications You must be signed in to change notification settings

mobtexting/mobtexting-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

nodejs plugin for mobtexting

This package makes it easy to send Mobtexting notifications.

Installation

You can install the package via npm:

npm install -g mobtexting-nodejs

Usage

Send an SMS

var mobtexting = require('mobtexting-nodejs')

var access_token = 'xxxxxxxxxxxxxxx'

var client = new mobtexting(access_token)

client.send(
        to="1234567890",
        from="MobTxt",
        body="Hello from nodejs!",
        service="P",
        function(result) {
                console.log(result)
        }
);

About

Nodejs module for communicating with MOBtexting enterprise Messaging and Verify Services

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published