Asp.net
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Its in C#, but you could easily realize how to do it in vb.
MailMessage yourEmail = new MailMessage(FROM_EMAIL_ADDRESS, TO_EMAIL_ADDRESS); yourEmail.Subject = "Your Email Subject"; SmtpClient smtpServer = new SmtpClient(SMTP_SERVER); smtpServer.Credentials = new NetworkCredential(SMTP_USER, SMTP_PASSWORD); smtpServer.Send(yourEmail);
Intelligence is almost useless for those who have nothing else! Email: caiokf@gmail.com