Hi @TerrificTerri,
Do you want to send your Gallery information to a specific person via text message instead of email?
I agree with @Pat_Wickramage's thought almost, the Launch("sms:"&"") formula doesn't support sending an Text message to a specific peson.
If you want to send an Text message (your Gallery information) to a specific person, I think the Twilio connector could achieve your needs.
More details about the Twilio connector in PowerApps, please check the following article:
Twilio connector
I have made a test on my side, please take a try with the following workaround:
Set the OnSelect property of the Button control to following formula:
Twilio.SendMessage("+8613485xxxxxx","+8615850xxxxxx","This is a test message")
The standard formula format of the Twilio.SendMessage() function as below:
Twilio.SendMessage(
from, /* From Phone Number, A Twilio phone number (in E.164 format) */
to, /* To Phone NUmber, A Twilio phone number (in E.164 format)*/
body, /* Message Body Text */
{ /* This Part is optional */
media_url:Table,
status_callback:Hyperlink,
messaging_service_sid:Text,
application_sid:Text,
max_price:Text
}
)
On your side, you should type the following formula:
Twilio.SendMessage(
"From Phone Number",
"To Phone Number",
"Ticket Number: " & GallerySection1.Selected.Ticket & Char (10)
)
More details about the Twilio connector, please check the following article:
Twilio connector
More details about E.164 format phone number, please check the following article:
https://www.twilio.com/docs/glossary/what-e164
Best regards,
Kris