Can I put in multiple #'s in the “To” field? If so what is the correct syntax?
What activity is this? What package is it in?
It’s sending a text via Twilio.
Hi @corinthertx
If you want to send the message to two phone numbers, say +1234567890 and +9876543210, the “To” field should look like this:
+1234567890,+9876543210
You can add as many phone numbers as you want, just separate them with a comma.
Regards,
Adding a comma does not work
Try this
“+1234567890,+9876543210”
or
“+1234567890;+9876543210”
It did not like the semicolon either. The only one that worked is “1231231234”
Hi @corinthertx
Store the all numbers in array then use for each to pass the number one by one.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.