Send Email from VB.NET using the equivalent of the ShellExecute API
Use the System.Diagnostics.Process.Start namespace.
Dim strParms As String = _
"mailto:MyEmail@something.com?subject=this is the subject&body=this is the body"
System.Diagnostics.Process.Start(strParms)
|
About TheScarms
Sample code version info
|