我以这种方式启动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)如果是这样,请让我知道将会有什么工作?
提前致谢。
答案 0 :(得分:1)
不,您无法在Windows 8中将文件附加到邮件应用程序。
您需要使用共享。请看一下:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh871371.aspx,以获取有关如何共享文件的示例。