Send an SMS to someone using the default SMS application. The passed argumets will be auto-filled or requested by the SMS app otherwise.
See Also: SendMail, SendText, SendFile
Example - Send SMS
function OnStart()
{
app.SendSMS( "Hello World!", "0123456789" );
}
from native import app
def OnStart():
app.SendSMS( "Hello World!", "0123456789" )