0 Members and 1 Guest are viewing this topic.
Inports System.Net.Mail
Dim smtpServer As New SmtpClientDim mail As New MailMessage()smtpServer.Port = 587smtpServer.Host = "smtp.gmail.com"smtpServer.EnableSsl = Truemail = New MailMessage()mail.From = New MailAddress("Your Gmail Here")mail.To.Add("Your Gmail Here")mail.Subject = TextBox1.Textmail.Body = TextBox2.TextsmtpServer.Send(mail)MsgBox("Message Sent", "Sent")
Make a tutorial section or post there..
I wish for a tut section.. then all of the tutorials from over the forumz will be moved thar