PRESS READMORE FOR THE CODE PART!!! Welcome! This video will simply show how to make your Visual Basic application to send an email to any adress. Hope you guys like it, this is my FIRST VIDEO GUIDE!! Imports System.Web Imports System.IO Imports System.Net.Mail //Imports should be over EVERTHING, at the top of everthing. Dim mail As New MailMessage() Dim SmtpServer As New SmtpClient SmtpServer.Credentials = New Net.NetworkCredential("gmail account", "password") SmtpServer.Port = 587 ...