Can I send SMS messages from Windows Phone directly, and not through the SMS application?
I already wrote a function for sending through the application
public async void SendSms(string phone, string message)
{
var chatMessage = new ChatMessage();
if (phone != null)
{
chatMessage.Recipients.Add(phone);
}
chatMessage.Body = message;
await ChatMessageManager.ShowComposeSmsMessageAsync(chatMessage);
}
Now I want to send SMS not through a standard application.
source
share