Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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;