Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 375 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 375 Bytes

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() {})