I am developing a Windows Store Application (Windows 8).
I have a need to send emails based on data and address stored in the application data and without the need
You can try with
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);