Open Outlook & New Message

Phreak

Regular
Joined
Jun 7, 2002
Messages
62
Location
Iowa, United States
Is there a way to open outlook and a NEW email message to a specified email address from vb.net? So say I make a LinkLabel, and when clicked, it opens outlook with a new email message with the "TO" field already filled in with my email address.

Thanks.
 
Visual Basic:
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, _
    ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
        Process.Start("mailto:junior@kwic.com?subject=Enter Subject Here")
End Sub
 
Back
Top