Summary
Sends a text message by using Reactor's SMS Gateway settings.
Syntax
local result = sendSms(message, phoneRecipient)Parameters
message : String containing the text of the message. phoneRecipient : String containing the destination phone number.
Returns
success : A boolean value indicating the result.
Description
Queues an SMS for sending via Reactor.
If the SMS gateway settings are not configured in Reactor, this function will return false.
Examples
local success = sendSms('All systems are back to normal, go back to sleep!', '18005551212')
See Also