C# – Windows Phone 8 – SMS Via Program

| |
using Microsoft.Phone.Controls;
using Microsoft.Phone.Tasks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using Windows.Phone.Speech.Recognition;
using Windows.System;

// Original Credit Goes To: AbundantCode
// http://abundantcode.com/how-to-send-sms-in-windows-phone-8-programatically-using-c/

namespace AbundantCodeWP8
{
    public partial class MainPage : PhoneApplicationPage
    {
        public MainPage()
        {
            InitializeComponent();
        }
        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            SmsComposeTask SMSCompose = new SmsComposeTask();
            SMSCompose.To = "<Number to which the SMS needs to be sent";
            SMSCompose.Body = "Message that needs to be sent";
            SMSCompose.Show();
        }
    }
}

GitHub: https://gist.github.com/dkittell/025bfa7e07b7a052eee6

Reference/Credit: http://abundantcode.com/how-to-send-sms-in-windows-phone-8-programatically-using-c/

Originally Posted on December 1, 2015
Last Updated on February 12, 2016
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.