[RESOLVED] Making an Email Link
Hi,
Would someone be able to tell me the code required to open the user's email client, with an email address in the sibject line within VB.Net. (just like if you click on an email address on the internet)
I assumed there would be an option similar to how webpages are opened using System code... but couldn't find it.
Thanks in advance.
Re: [2005] Making an Email Link
Use a LinkLabel with this code in the LinkClicked procedure
VB Code:
Process.Start("Mailto: youremail.com")
Re: [2005] Making an Email Link