Could you provide an example of sending an SMS message using start activity. I have tried this in the function node
msg.payload = {
"action": "android.intent.action.SENDTO",
"type": "HTTP.PLAIN_TEXT_TYPE",
"extras":{
"android.intent.extra.address": "0123456789",
"android.intent.extra.sms": "Test SMS",
"android.intent.extra.subject": "Test SMS",
"android.intent.extra.sms_body": "this is test"
}
}
return msg;