如何使用 .NET Compact Framework 打开新电子邮件并分配主题

发布于 2024-07-06 13:14:02 字数 364 浏览 11 评论 0原文

基本上我正在尝试完成与“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 技术交流群。

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

发布评论

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

评论(2

谁人与我共长歌 2024-07-13 13:14:02

我假设你使用 C#。 您添加对 System.Diagnostics 的引用,然后编写以下代码:

ProcessStartInfo psi = 
  new ProcessStartInfo("mailto:[email protected]?subject=MySubject", "");
Process.Start(psi);

这将启动移动设备上的默认电子邮件客户端。

mailto 协议定义也可能会很方便。

I assume you use C#. You add a reference to System.Diagnostics and then write the following code:

ProcessStartInfo psi = 
  new ProcessStartInfo("mailto:[email protected]?subject=MySubject", "");
Process.Start(psi);

This will start the default email client on your mobile device.

The mailto protocol definition might come handy too.

笑饮青盏花 2024-07-13 13:14:02

您还可以像这样使用 Microsoft.WindowsMo​​bile.PocketOutlook.MessagingApplication.DisplayComposeForm:

OutlookSession sess = new OutlookSession();
EmailAccountCollection accounts = sess.EmailAccounts;
//Contains all accounts on the device  
//I'll just choose the first one -- you might want to ask them
MessagingApplication.DisplayComposeForm(accounts[0], 
    "[email protected]", "The Subject", "The Body");

DisplayComposeForm 方法有很多重载,其中包含附件等选项。

You can also use Microsoft.WindowsMobile.PocketOutlook.MessagingApplication.DisplayComposeForm like so:

OutlookSession sess = new OutlookSession();
EmailAccountCollection accounts = sess.EmailAccounts;
//Contains all accounts on the device  
//I'll just choose the first one -- you might want to ask them
MessagingApplication.DisplayComposeForm(accounts[0], 
    "[email protected]", "The Subject", "The Body");

The DisplayComposeForm method has a lot of overloads with options for attachments and more.

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