如何编写代码以在 Windows Mobile 中发送带有传递消息的 SMS?请用 C# 或 C++ 代码指导我。我想在此代码中使用 SmsSendMessage API,因为此 API 具有更多功能。
问问题
2115 次
2 回答
3
您可以使用SmsSendMessage发送消息并使用SmsGetMessageStatus获取已发送 SMS 的状态报告。这都是 C++ 代码,但您也可以调用它。
于 2009-06-09T09:11:40.457 回答
3
Microsoft.WindowsMobile.PocketOutlook 命名空间
Microsoft.WindowsMobile.PocketOutlook 命名空间提供了允许您在移动设备上创建和访问 PIM 数据项(约会、任务和联系人)和 MAPI 消息项(电子邮件和 SMS 消息)的类
msdn中的SmsMessage类
此示例显示如何向手机发送 SMS 消息。
public void SmsMessageSend()
{
SmsMessage smsMessage = new SmsMessage();
//Set the message body and recipient.
smsMessage.Body = "Would you like to meet for lunch?";
smsMessage.To.Add(new Recipient("John Doe", "2065550199"));
smsMessage.RequestDeliveryReport = true;
//Send the SMS message.
smsMessage.Send();
return;
}
于 2009-06-09T09:12:35.850 回答