I need to send an email with a log file from my windows phone 8.1 app. I found this way :
var mailto = new Uri("mailto:?to=recipient@example.com&subject=The subject of an email&body=Hello from a Windows 8 Metro app.");
await Windows.System.Launcher.LaunchUriAsync(mailto);
Is there a special parameter to specify the attach file or another completly different way ?