hemera-twilio-sms
v0.0.1
Published
Hemera plugin for Twilio SMS
Downloads
2
Readme
Hemera SMS
Plugin for Twilio SMS
Examples
Setup
const FCM = require('hemera-twilio-sms');
// Code...
hemera.use(FCM, { account: '...', token: '...' });Send Text Message
hemera.act({
cmd: "CMD_SEND_SMS",
topic: "TOPIC_TWILIO_SMS",
payload: {
from: '...',
to: '...',
body: '...'
},
}, function() {})