I have a small company and I wanted to make a rather simple python3 program that will run on my phone on Qpython3 using SL4A. The purpose of it is to send group SMSs to my customers with offers (whose phone numbers I store in a list) from my personal phone because I have unlimited texts.
I have managed to create a program which sends the texts (relevant fragment below) but the problem is that I have quite a few numbers collected in the list by now. When the texts are sent, a new thread is created for each customer in my messages so I have about 550 threads created each time I send a group sms and I end up deleting them manually which is rather annoying to get to my personal sms threads below.
What I wanted to ask for is help to create a short code fragment whereby the sms sent by the script will be immediately deleted after it is sent so overall, after sending all text messages, no threads relating to these will appear in my messaging app (default samsung galaxy s4 app). Also, is there a way to send the message so that the next message is only sent once the previous one is confirmed as sent (not in the process of sending) because to stop my phone from freezing, I currently just use time.sleep?
import androidhelper, time
droid=androidhelper.Android()
#loads of irrelevant code here
#example values of variables numbers and message below
numbers=["0000000001","000000000002","000000000000003"]
message="This is a sample message."
for number in numbers:
droid.smsSend(number,message)
#The code below is here so that the texts don't fail to send as they did before I added this in. Hopefully, you could help me to replace it with something to wait for the previous sms to be confirmed as sent.
time.sleep(3)
Please help me with this problem. I would be very grateful. Thanks in advance to anyone who replies.
try:
and numbers in international format: ['+7989xxxxxxx', '+7961xxxxxxx'] this is work for me in qpython 3