Dim SimpleSMTP As New SmtpClient("smtp.gmail.com")
SimpleSMTP.Port = 587
SimpleSMTP.EnableSsl = True
SimpleSMTP.Credentials = New System.Net.NetworkCredential(TextBox1.Text, TextBox2.Text)
SimpleSMTP.Send(EmailMessage)
End Sub
What this is doing is telling the program to use (gmail email) to send high priority mail to a assigned number, this source is very simple and can be found anywhere :) Just wanted to share some source code on it all of you I assume know what a SMS Bomber is!