MarcioCC Member Licensed User Longtime User Oct 10, 2017 #1 Does anyone know how to send SMS message through an app ?? Is there any library for this ?? I need to develop an app where you have this option to send sms to clients.
Does anyone know how to send SMS message through an app ?? Is there any library for this ?? I need to develop an app where you have this option to send sms to clients.
NJDude Expert Licensed User Longtime User Oct 11, 2017 #2 You should start by reading the DOCUMENTATION and then by searching the forums for examples, there are plenty. Upvote 0
You should start by reading the DOCUMENTATION and then by searching the forums for examples, there are plenty.
imbault Well-Known Member Licensed User Longtime User Oct 11, 2017 #3 Add the Phone library to your project B4X: Dim ps As PhoneSms Dim cTo, cSms as String cTo = "06000000000" ' phone Nomber cSms = "Your SMS Text" ps.Send2(cTo, cSms, False, False) Upvote 0
Add the Phone library to your project B4X: Dim ps As PhoneSms Dim cTo, cSms as String cTo = "06000000000" ' phone Nomber cSms = "Your SMS Text" ps.Send2(cTo, cSms, False, False)