Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/igor-adlab/hemera-twilio-sms

Hemera Twilio SMS
https://github.com/igor-adlab/hemera-twilio-sms

hemera sms twilio typescript

Last synced: about 1 month ago
JSON representation

Hemera Twilio SMS

Awesome Lists containing this project

README

        

# Hemera SMS
Plugin for Twilio SMS

## Examples

### Setup
```javascript
const FCM = require('hemera-twilio-sms');
// Code...
hemera.use(FCM, { account: '...', token: '...' });
```

### Send Text Message
```javascript
hemera.act({
cmd: "CMD_SEND_SMS",
topic: "TOPIC_TWILIO_SMS",
payload: {
from: '...',
to: '...',
body: '...'
},
}, function() {})
```