Is there a way to send an alert in the form of an SMS message in a Xamarin.Forms app? For example, after a certain user interaction, to send a notification to all the people in a certain list (if you have their phone numbers)? I know that you can use the Xam.Plugin.Messaging solution to send an SMS message from one phone to another, but how would I approach doing it for this use case? Not sending it from one user to the other, but almost "from the app" to the user? Thank you!
void Button_Clicked(System.Object sender, System.EventArgs e) { //Here send the alert that says "button clicked" to certain number }