Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SMS Gateway Code
Script to process SMS request. If script returns any not null value system assumes SMS has been sent.

true
Expand
titleSample SMS Sending Code


Code Block
languagejs
collapse
var client = $Rest.Create('http://smsservice/sendsms');

var request = client.Request('', {
    to : $Destination,
    message : $Message
});

request.ExecuteJson();

return true;




Workers

Configuration of background job workers. This list allows to customize worker queue priority and error handing configurations. Please seeĀ Background Jobs page for more detail.

...