Send email using your default email client : Email Client « Windows System « VB.Net






Send email using your default email client

Imports System
Imports System.Drawing
Imports System.Data
Imports System.IO
Imports System.Collections
Imports System.Windows.Forms
Imports System.Xml

Public Class MainClass
    Shared Sub Main()
       System.Diagnostics.Process.Start("mailto:" & "youremail@yourserver.com")
    End Sub
End Class


           
       








Related examples in the same category