Has anyone messed around with Sending email with VB.NET? OR do you know of any tutorials?
THANKS!!!
Printable View
Has anyone messed around with Sending email with VB.NET? OR do you know of any tutorials?
THANKS!!!
I have created a link label field that users can use to email others. Below is my code for the On_click event for the link label.
llbEmail.LinkVisited = True
System.Diagnostics.Process.Start("mailto:" & txtEmail.Text)
llbEmail = link label field
txtEmail = textbox field which is bound to the users email address from an Access db