B4A Question Send SMS from B4A code - Nishan15    May 18, 2020 I am looking for any working library for sending SMS directly from B4A code without user intervention . By using "Intet" , it need user action to click "Send" Button in messaging app. Dim In As Intent In.Initialize(In.ACTION_VIEW, "sms:" & number) In.PutExtra("sms_body", "this is the body") StartActivity(In)... B4A Code Snippet Send SMS/MMS using Twilio Rest API - JohnC    Jan 9, 2022   (14 reactions) text sending code:
Sub SendTwilioSMS(NumbertoSendto As String, MessageToSend As String)
'This routine sends an SMS from your Twilio.com number to specified number (must include country code... Share My Creation Send SMS from anywhere using B4A ! [Free source included !] - Justcooldev    May 20, 2024   (24 reactions) Hi there!
I want to show you how to send SMS for free from anywhere (Server, B4J, B4A, B4I, Python... and grant the "Send SMS" permission on your phone.
Done!
To send an SMS, you just need to... B4A Question Send SMS without appearing in "sent messages" of the device - bgsoft    Mar 10, 2014 If sending SMS to any of these two systems: '1) Dim ps As PhoneSms Dim r As Reflector r.Target = r.RunStaticMethod("android.telephony.SmsManager", "getDefault", Null, Null) r.RunMethod4("sendTextMessage", Array As Object("phone number", Null...------------------------------------------------------------------------------------------------- '2) Dim Sms1 As PhoneSms Sms1.Send(phone number,"hello") The message appears in "sent messages" of the device As I can send an SMS, without... B4J Code Snippet B4XVonage - Send SMS, MMS, WhatsApp, Facebook, Viber, Video, Audio Messages etc etc via Vonage - Mashiane    Apr 20, 2021   (7 reactions) Ola One learns new things everyday. @micro just pointed me out to this. A rather awesome paid service for all types of messaging APIs. Well, they give you 2 pounds to check their API etc ect. Download 1. Create a Vonage account and get your api keys and secrets. You will know where to put them on the attached code. 2. For testing, you need to whitelist your mobile number with them by sending... and working are whatsapp & sms messaging. I cant seem to receive the image whatsapps as much... B4A Question Error sending an SMS despite having all permissions - AlpVir    Feb 19, 2023 To send an SMS the following code should be valid Dim Sms1 As PhoneSms Sms1.Send(telnum,txtSMS) or Dim Sms1 As PhoneSms Sms1.Send2(telnum,txtSMS, False,False) However I get the following error java.lang.SecurityException: Sending SMS message: uid 10214 does not have android.permission.SEND_SMS. despite having indicated in Manifest AddPermission(android.permission.SEND_SMS) and also having....PERMISSION_READ_CONTACTS ,rp.PERMISSION_ACCESS_FINE_LOCATION, rp.PERMISSION_WRITE_EXTERNAL_STORAGE, rp.PERMISSION_SEND_SMS... B4A Question Error sending SMS - GiovanniPolese    Jan 11, 2025 Hi to Everybody
I have a strange situation. The attached project works perfectly on a Motorola G54. I send and receive SMS. I have moved the same SIM on a tablet and run same App. I get the error... B4A Question send sms using google messages stopped working - urgent ... - Zeev Goldstein    Oct 14, 2024 hi
i'm using the bellow code to send sms
Intent1.Initialize(Intent1.ACTION_VIEW, "sms... as the app is on google play store
the sms sending feature is critical so please...
thanks... B4i Code Snippet [B4x] Send SMS (Text Message), Dial Number, Send Email B4A and B4i - Code Snippets - MrKim    Oct 9, 2021   (11 reactions) (RP.PERMISSION_SEND_SMS) = False Then 'if no existing phone call permission....PERMISSION_SEND_SMS) 'prompt for permission
Wait For Activity_PermissionResult... B4J Question Send SMS from B4J - Mostez    Jul 11, 2023 I built a B4J notification server, it works very well, now I need to add another feature to this server for sending SMS to clients, has anyone worked with any paid or free SMS API?
TIA... Page: 1   2   3   4   5   |