如何使用 .NET Compact Framework 打开新电子邮件并分配主题
基本上我正在尝试完成与“mailto:[email protected]”在 Internet Explorer Mobile 中执行此操作。
但我希望能够通过托管的 Windows Mobile 应用程序来完成此操作。 我不想在后台按语法发送电子邮件程序。
我希望能够在 Pocket Outlook 中创建电子邮件,然后让用户完成其余的工作。
希望这对你有帮助希望对我有帮助!
Basically I'm trying to accomplish the same thing that "mailto:[email protected]" does in Internet Explorer Mobile.
But I want to be able to do it from a managed Windows Mobile application. I don't want to send an email pro grammatically in the background.
I want to be able to create the email in Pocket Outlook and then let the user do the rest.
Hopefully that helps you hopefully help me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设你使用 C#。 您添加对 System.Diagnostics 的引用,然后编写以下代码:
这将启动移动设备上的默认电子邮件客户端。
mailto 协议定义也可能会很方便。
I assume you use C#. You add a reference to System.Diagnostics and then write the following code:
This will start the default email client on your mobile device.
The mailto protocol definition might come handy too.
您还可以像这样使用 Microsoft.WindowsMobile.PocketOutlook.MessagingApplication.DisplayComposeForm:
DisplayComposeForm 方法有很多重载,其中包含附件等选项。
You can also use Microsoft.WindowsMobile.PocketOutlook.MessagingApplication.DisplayComposeForm like so:
The DisplayComposeForm method has a lot of overloads with options for attachments and more.