hi sir, i am new on asp and i want to implement email option on a page , so may i know that how will be this possible to send that mail on my personal mail id .. may i have some guidance please with coding if you guys don't mind..
thanks in advance
Protected Sub SendEmail_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles SendEmail.Click '!!! UPDATE THIS VALUE TO YOUR EMAIL ADDRESS Const ToAddress As String = "you@youremail.com"
'(1) Create the MailMessage instance Dim mm As New MailMessage(UsersEmail.Text, ToAddress)
Comments
Leave a comment