Same Message to Different Numbers

swinquest1981

New member
I would like to see if there is a way to have something set up to send ONE SMS message to multiple recipents individually.

I have included a screenshot of what I have currently set up, but the challenge is that I have to create an action for each recipient with the message. I have included a screenshot.

My vision is having one action with the message itself, but then other actions or variables that list the phone numbers so that I only need to type the message once instead of 50 times.

And no.....I don't want a group MMS message. I want individual messages to go out.
 

Attachments

  • Screenshot_20240224_093835_MacroDroid.jpg
    Screenshot_20240224_093835_MacroDroid.jpg
    159.6 KB · Views: 8

hsurB

Well-known member
You could store all numbers in array/dictionary and use iterate dictionary/array action to send message (using iterator's key or value depending on where you store numbers) in action send sms. Each time loop runs it will send sms to next number stored in array/dictionary.
You wouldn't even need to edit macro later, you could just add number to array/dictionary and it would work right away
 

Dm114

Well-known member
You could store all numbers in array/dictionary and use iterate dictionary/array action to send message (using iterator's key or value depending on where you store numbers) in action send sms. Each time loop runs it will send sms to next number stored in array/dictionary.
You wouldn't even need to edit macro later, you could just add number to array/dictionary and it would work right away
This is the easiest and simplest way to achieve @swinquest1981's request!
 
Top