发送包含送达消息的短信
如何在 Windows Mobile 中编写带有传递消息的 SMS 发送代码? 请用 C# 或 C++ 代码指导我。 我想在这段代码中使用SmsSendMessage API,因为这个API有更多的功能。
How can i write code for send SMS with delivery message in Windows Mobile? please guide me with C# or C++ code.
I want to use SmsSendMessage API in this code because this API have more features.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SmsSendMessage 发送消息并使用 SmsGetMessageStatus 获取已发送短信的状态报告。 这都是 C++ 代码,但您也可以调用它。
You could use SmsSendMessage to send the message and use SmsGetMessageStatus to get the status report of the sent SMS. This is all C++ code, but you can pinvoke it as well.
Microsoft.WindowsMobile.PocketOutlook 命名
空间 Microsoft.WindowsMobile.PocketOutlook 命名空间提供的类允许您在移动设备上创建和访问 PIM 数据项(约会、任务和联系人)以及 MAPI 消息项(电子邮件和 SMS 消息)
msdn 中的 SmsMessage 类
此示例展示了如何向手机发送短信。
Microsoft.WindowsMobile.PocketOutlook Namespace
The Microsoft.WindowsMobile.PocketOutlook namespace provides classes that allow you to create and access PIM data items (Appointments, Tasks, and Contacts), and MAPI messaging items (e-mail and SMS messages), on mobile devices
SmsMessage Class in msdn
This sample shows how to send an SMS message to a mobile phone.