我正在以这种方式启动 mailto 应用程序:-
using Windows.System;
//starts the default mail app with a subject, cc, bcc, and body
Launcher.LaunchUriAsync(new Uri("mailto:windows8devs@almostbeta.com?subject=Code Request&cc=kevin@almostbeta.com&bcc=admin@almostbeta.com&body=Hi!"));
1) 我们不能在 Windows 8 中将附件附加到 mailto 应用程序吗?
2)如果是这样,请让我知道解决方法是什么?
提前致谢。