Back

SendSMS

JS Py
Hello World

Send an SMS to someone using the default SMS application. The passed argumets will be auto-filled or requested by the SMS app otherwise.

app.SendSMS( msg?, number? )

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" )
Copy All       Run      
String
String: number