Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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;