How to make a “Emailer” in Visual Basic 2008 Email Sender
Thanks for watching and here is the website tr3net5632.webs.com and the code is for the top top part Imports System.Net.Mail the button1 code is Dim mail As New MailMessage() Dim SmtpServer As New SmtpClient SmtpServer.Credentials = New Net.NetworkCredential(TextBox1.Text, TextBox2.Text) SmtpServer.Port = 587 SmtpServer.Host = “smtp.gmail.com” SmtpServer.EnableSsl = True mail.To.Add(TextBox3.Text) mail.From = New MailAddress(TextBox1.Text) mail.Subject = ...