Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows 8 Metro 应用程序上未使用命名空间 System.Net.Mail 对吗?如何设置应用程序发送电子邮件?
你是对的,看看这个和这个。
如果您想从您的应用程序发送电子邮件,我建议您设置一个服务器,该服务器可以接收来自应用程序的请求并从该应用程序发送电子邮件:)
在 Windows 8 应用程序上,您可以启动以mailto:. 您还可以通过向 URI 添加参数来设置电子邮件地址、主题和正文。这是一个例子:
mailto:
var mailto = new Uri("mailto:?to=name@email.com&subject=Here is a subject&body=Message here."); await Windows.System.Launcher.LaunchUriAsync(mailto);