Hi,
Here is my code to send sms :
if(OS_IOS){ Titanium.Platform.openURL('sms:' + toShare.sms.content); } else{ var intent = Ti.Android.createIntent({ action: Ti.Android.ACTION_SENDTO, data: 'smsto:' }); intent.putExtra('sms_body', toShare.sms.content); Ti.Android.currentActivity.startActivity(intent); }is it possible to know when the sms is sent ?
thanks