This is a code snippet showing how you may call the “mailto” to open your mail program.
View Demo: New Window
Calling mailto via Javascript:
private void SendEmail(string email, string subject, string body)
{
Uri uri = new Uri(String.Format("mailto:{0}?subject={1}&body={2}", email, subject, body));
System.Windows.Browser.HtmlPage.Window.Navigate(uri);
}
Website: http://www.shinedraw.com







thank. you. so. f.ing much
This technique opens an empty browser window before sending the mailto link to Outlook. Is there any way to disable the popup?