Advertisement
Guest User

Untitled

a guest
Sep 28th, 2015
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Imports System.Web
  2. Imports System.IO
  3. Imports System.Net.Mail
  4.  
  5. Dim mail As New MailMessage()
  6. Dim SmtpServer As New SmtpClient
  7. SmtpServer.Credentials = New Net.NetworkCredential("email@gmail.com", "password")
  8. SmtpServer.Port = 587
  9. SmtpServer.Host = "smtp.gmail.com"
  10. SmtpServer.EnableSsl = True
  11. SmtpServer.EnableSsl = True
  12. mail.To.Add("recievingemail@hotmail.co.uk")
  13. mail.From = New MailAddress("email@gmail.com")
  14. mail.Subject = "Match Reminder"
  15. mail.Body = "A reminder that you have an upcoming match this week, please check match details."
  16. SmtpServer.Send(mail)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement