SMS Context
-
Send SMS messages through Twilio provider
-
You can bulk send sms'es to multiple recipients, platform will take care of the distribution asynchronous
-
Context Variable: sms
API Interface
//Define a Twilio SMS gateway
void define(String sid, String token, String primaryPhone);
//Send an SMS to a list of receipents
void send(String content, String... receipents);
//Send an SMS to one or more receipents
void send(String content, String... receipents);
APIs Inherited
Updated about 3 years ago