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.
我想从我的应用程序发送电子邮件是否可以使用 Outlook 从 Windows 8 应用程序发送电子邮件?
有什么建议吗??
你可以用这个启动outlook。
var mailto = new Uri("mailto:?to=hello@world.com&subject=Hello%20World&body=this%20is%20body"); await Windows.System.Launcher.LaunchUriAsync(mailto);