发送包含送达消息的短信

发布于 2024-07-23 22:24:29 字数 111 浏览 11 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

金兰素衣 2024-07-30 22:24:29

您可以使用 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.

与往事干杯 2024-07-30 22:24:29

Microsoft.WindowsMo​​bile.PocketOutlook 命名

空间 Microsoft.WindowsMo​​bile.PocketOutlook 命名空间提供的类允许您在移动设备上创建和访问 PIM 数据项(约会、任务和联系人)以及 MAPI 消息项(电子邮件和 SMS 消息)

msdn 中的 SmsMessage 类

此示例展示了如何向手机发送短信。

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;
    }

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.

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;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文