How can I send an email without attachments using the default email client installed on Windows 10/8/7? I tried the following code, but it just opens a blank page in the Chrome browser.
var url = "mailto:someone@somewhere.com?subject=Test&body=Hello";
System.Diagnostics.Process.Start(url);
I can fix the problem by changing the default mail client from Google Chrome to MS Outlook, but shouldn't Google Chrome automatically open Gmail in this case?