Skip to end of banner
Go to start of banner

sendSMS

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Availability

This routine is available since katl-commons 1.0 .

Syntax:

sendSMS(senderName, phone, text)

Description:

Sends an SMS using the ENMS service (an additional Kepler product) or some other provider.

See the Configuration manual for more details and supported providers, as well as specifics for each.

Returns false if sending failed.

More about the configuration can be found at SMS Sender Configuration section.

Parameters:

Parameter name

Type

Required

Description

senderName

string

yes

the sender name

phone

string

yes

the MSISDN of the destination

text

string

yes

the text

The sender name can be either a sequence of maximum 11 characters or a phone number and must not contain spaces.

 

Returns:

boolean

Returns true if the message was sent successfully or false if an error occurred.

Example:

sendSMS("KEPLER","+40123456789","Hello world!");

See Also:

 

  • No labels