如何“默默地”发送电子邮件?

时间:2012-10-15 15:04:54

标签: c# email windows-8 microsoft-metro email-integration

我怎样才能"默默地" (无需用户干预)从C#Windows 8" Metro" / Store / Modern UI应用程序发送电子邮件?

更新

根据我从这里收集的内容:

http://social.msdn.microsoft.com/Forums/da/winappswithcsharp/thread/393a123f-674c-4b44-af87-9963053f42fd

可能我可以将我的应用程序用作共享源,以内置电子邮件客户端为目标,IT部门将发送我的电子邮件。有意义吗?

更新2

我认为Raw Notifications(http://code.msdn.microsoft.com/windowsapps/Raw-notifications-sample-3bc28c5d)可能是我的未来。

1 个答案:

答案 0 :(得分:2)

WinRT不包含 System.Net.Mail 命名空间,因此如果您想直接从您的应用发送电子邮件,则需要手动连接到您的邮件Web服务,打开一个套接字到SMTP端口等

否则,您需要调用接收参数并发送邮件的WCF服务。