Imports System.Net.Mail dim Mail As New MailMessage Mail.Subject = "메일제목" Mail.To.Add("보낼주소") Mail.From = New MailAddress("myID@gmail.com") Mail.Body = "메일보낼 내용" Dim SMTP As New SmtpClient SMTP.Host = "smtp.gmail.com" SMTP.EnableSsl = True SMTP.Credentials = New System.Net.NetworkCredential("My ID@gmail.com", "password") SMTP.Port = "587" SMTP.Send(..