Märkus.
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida sisse logida või kausta vahetada.
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida kausta vahetada.
Here is the snippet to send SMS programmatically
using
Microsoft.WindowsMobile.PocketOutlook;
SmsMessage smsMessage = new SmsMessage();
smsMessage.Body =
"Some message";
smsMessage.To.Add(
new Recipient(strNumber)); // StrNumber holds the receipeint number
smsMessage.RequestDeliveryReport =
false;
//Send the SMS message.
smsMessage.Send();
Comments
- Anonymous
July 27, 2010
Just where in did you get this namespace from? using Microsoft.WindowsMobile.PocketOutlook;