Faceți căutări pe acest blog

marți, 23 februarie 2010

Send sms in WM

If you need to send a SMS via an application in Windows Mobile .NET
try
{
SmsMessage sms = new SmsMessage()
{
Body = text
};
sms.To.Add(new Recipient(HQPhoneNo));
sms.RequestDeliveryReport = true;
sms.Send();

// MessageBox.Show("Message sent!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

Niciun comentariu:

Trimiteți un comentariu