B4A Question Sending SMS by PhoneSMS incl. capturing of 'Message Sent' and 'SMS Received' events etc. - DonManfred (first post)    Apr 19, 2021   (4 reactions) Only the default SMS App on your Device is allowed to Send SMS.
I earlier Androids it was possible B4i Code Snippet [B4x] Send SMS (Text Message), Dial Number, Send Email B4A and B4i - Code Snippets - MrKim    Oct 09, 2021   (11 reactions) Sub SendText(Num As String, Msg As String)
Try
#If B4A
Dim CallReason As String = "In order for this program to send texts, your permission is required. The next screen will ask for that permission. If you deny permission, then this program can not start a text message for you."
B4A Question Send SMS from B4A code - JohnC (first post)    May 18, 2020   (4 reactions) Basically, your app can not send an SMS without user intervention unless:
1) Your app is configured to be the "default" sms app for the device (which will disable the factory SMS app that came with the phone)
2) Or use a third party service like Twilio to send the SMS (but then it will NOT be from B4A Question Publishing status: Rejected - JohnC (first post)    May 07, 2021   (1 reaction) The only way google will allow an app to "send" an SMS is if your app is the default sms app on the user's device.
So, google rejected your app because your app can not be used to replace a typical sms messaging app. B4A Question Send sms with SIM card 1 or 2 - morti08 (first post)    Feb 21, 2023 (SmsManager.java:1668)
at android.telephony.SmsManager.sendTextMessageInternal(SmsManager.java:652)
at android.telephony.SmsManager.sendTextMessage(SmsManager.java:489)
at b4a.example.KKK.main.SendSMS(main.java:446)
... 18 more Share My Creation Send SMS from anywhere using B4A ! [Free source included !] - Justcooldev    May 20, 2024   (21 reactions) Hi there!
I want to show you how to send SMS for free from anywhere (Server, B4J, B4A, B4I, Python, JS, etc.) just by using a POST request, MySQL, PHP, and B4A!
Steps to use:
You need to have a web server (shared or private is fine). To create a free one, use 000webhost.
Once you have access to you B4A Question Send SMS - mohsen programmer    Dec 06, 2023 I added this function to my project:
Sub SendMultipartTextMessage(Number As String, Message As String, SubscriptionId As Int)
Dim r As Reflector
r.Target = r.RunStaticMethod("android.telephony.SmsManager", "", Array As Object(SubscriptionId), Array As String("java.lang.int"))
Dim parts A Share My Creation Bulk SMS in B4A - Abdull Cadre    May 22, 2023   (15 reactions) 119737 Overview This is an source android application used to send bulk SMS (sending SMS to multiple recipients). It is designed for individuals, small and medium business owners who wish to send SMS to a list of friends or clients that is stored in an excel file without adding their numbers as co B4A Question how to send an SMS (november 2023) - vangogh    Nov 23, 2023 hello
OK, I REALLY read many many threads about this,
but some are old, some says "it cannot be done anymore", some says "yes, it can be done" but when i run them I get an error...
and yes, I can send sms using an intent - it works, not useful to me
So, NOW, how can I send an SMS, (updated) ?
t B4A Question Sending SMS - Erel (first post)    Jan 08, 2017   (1 reaction) It is indeed very simple to send sms messages. Too bad you haven't bothered searching the forum: https://www.b4x.com/search?query=send+sms
Sub send_text_SMS(phonenumber As String, message As String) 'string not int
Dim ps As PhoneSms
ps.Send2(PhoneNumber, Message, False, False)
End Sub Page: 1   2   3   4   5   6   7   Powered by ColBERT |