Phreak Posted December 30, 2002 Posted December 30, 2002 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. Quote If it works... don't worry, I'll fix it.
*Experts* Volte Posted December 30, 2002 *Experts* Posted December 30, 2002 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 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.