Is it possible to attach Attachements to mailto ap

2019-08-09 07:01发布

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条回答
冷血范
2楼-- · 2019-08-09 07:20

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.

查看更多
登录 后发表回答