Is it possible to attach Attachements to mailto app in windows 8 metro application?

五迷三道 提交于 2019-12-11 06:53:19

问题


I am launching the mailto app in this way :-

 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) Can't we attach attachments to mailto app in windows 8?

2) If so please let me know what would be the work around ?

Thanks in advance.


回答1:


No, you can't attach files to mail app in Windows 8.

You need to use Sharing. Take a look to this: http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh871371.aspx, for an example on how to share files.



来源:https://stackoverflow.com/questions/13247182/is-it-possible-to-attach-attachements-to-mailto-app-in-windows-8-metro-applicati

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!