Guest User

Untitled

a guest
Jan 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1.  
  2. Dim Mail As New MailMessage
  3. Mail.Subject = (CyberTextBox2.Text) + "needs help"
  4. Mail.To.Add("xplictgaming@live.com")
  5. Mail.From = New MailAddress("hwidsystem@gmail.com")
  6. Mail.Body = (CyberTextBox2.Text) + "needs some help with HWID Login."
  7.  
  8.  
  9.  
  10. Dim SMTP As New SmtpClient("smtp.gmail.com")
  11. SMTP.EnableSsl = True
  12. SMTP.Credentials = New System.Net.NetworkCredential("hwidhelp@gmail.com", "2YR7xS2Cw")
  13. SMTP.Port = "587"
  14. SMTP.Send(Mail)
  15.  
  16. MsgBox("Admins has been notified of your problem.
Add Comment
Please, Sign In to add comment