Dim Msg as MailMessage = new MailMessage()
Dim MailObj As New SmtpClient("smtpin.livedns.co.il")
Msg.From = new MailAddress("
me@Here.com", "From Name")
Msg.To.Add(new MailAddress("
you@There.com", "To Name"))
Msg.IsBodyHtml = "False"
Msg.Body = "this is the Email body"
Msg.Subject = "This is the Subject"
MailObj.Send(msg)