1.1.0 • Published 6 years ago

cm-messaging-node v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

cm-messaging-node: A helper library to send text messages.

NPM

Build Status Codacy Badge codecov

Want to send text-messages in your Node.js application? Then you are at the right place.

The package is currently limited in features compared to the CM gateway, but if you want to get all the functionalities, go to: CM.com API Docs

Usage

Node.JS

First, run npm install cm-messaging-node. Then, in your source file:

const messagingApi = require("cm-messaging-node");

// Get your product token at CM.com.
const yourProductToken = "";
const myMessageApi = new messagingApi.MessageApiClient(yourProductToken);

const result = myMessageApi.SendTextMessage("00316012345678", "TestSender", "Hello world?!");

result.then((result) => {
    console.log(result);
}).catch((error) => {
    console.log(error);
});

or send multiple with SendTextMessages:

const result = myMessageApi.SendTextMessages(["00316012345678","003160000000"], "TestSender", "Hello world?!");

License

cm-messaging-node is under the MIT license. See LICENSE file.

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago