classes: MailMessage, SmtpClient
---
MSDN Social thread:
public static extern IntPtr ShellExecute(
IntPtr hwnd,
string lpOperation,
string lpFile,
string lpParameters,
string lpDirectory,
int nShowCmd);
Public static void LaunchEmailClient(string mailURL)
{�
ShellExecute(IntPtr.Zero, "open", mailURL, "", "", 4);
}
You can refer http://msdn.microsoft.com/en-us/library/bb762153.aspx
---
No comments:
Post a Comment
comment: