Introduction:
In this tutorial you will be learning how to send bulk mail in Visual Basic.
Steps of Creation:
Step 1:
First we are going to create a new project with:
5 Text-boxes - Email From, Email Pass, Email To, Subject, Message
1 Button
Rename them appropriately to:
emailFrom, emailPass, emailTo, subject, msg
Step 2:
In the button one click event we are going to create an integer which is how many times we are going to send the email and another one to keep the amount sent.
Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
Dim sent As Integer = 0
Dim toSend As Integer = 1000
End Sub
Step 3:
Next lets create the email MailMessage and Import System.Net.Mail
Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
Dim sent As Integer = 0
Dim toSend As Integer = 1000
Do Until sent => toSend
Try
Dim SmtpServer As New SmtpClient()
Dim mail As New MailMessage()
SmtpServer.Credentials = New Net.NetworkCredential(emailFrom.Text, emailPass.Text)
SmtpServer.EnableSsl = True
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
mail = New MailMessage()
mail.From = New MailAddress(emailFrom.Text)
mail.To.Add(emailTo.Text)
mail.Subject = subject.Text
mail.Body = msg.Text
SmtpServer.Send(mail)
sent += 1
Catch ex As Exception
MsgBox(ex.ToString)
End Try
Loop
End Sub
Step 4:
That's the basic idea. We can make it run on a new Thread so it doesn't freeze the program's UI while running.
Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
Dim trd As Threading.Thread
trd = New Threading.Thread(AddressOf BulkMail)
trd.isBackground = True
trd.Start()
End Sub
Private Function BulkMail()
Dim sent As Integer = 0
Dim toSend As Integer = 1000
Do Until sent => toSend
Try
Dim SmtpServer As New SmtpClient()
Dim mail As New MailMessage()
SmtpServer.Credentials = New Net.NetworkCredential(emailFrom.Text, emailPass.Text)
SmtpServer.EnableSsl = True
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
mail = New MailMessage()
mail.From = New MailAddress(emailFrom.Text)
mail.To.Add(emailTo.Text)
mail.Subject = subject.Text
mail.Body = msg.Text
SmtpServer.Send(mail)
sent += 1
Catch ex As Exception
MsgBox(ex.ToString)
End Try
Loop
End Function
Project Completed!
That's it! Here is the finished source:
Imports System.Net.Mail
Public Class Form1
Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
Dim trd As Threading.Thread
trd = New Threading.Thread(AddressOf BulkMail)
trd.isBackground = True
trd.Start()
End Sub
Private Function BulkMail()
Dim sent As Integer = 0
Dim toSend As Integer = 1000
Do Until sent => toSend
Try
Dim SmtpServer As New SmtpClient()
Dim mail As New MailMessage()
SmtpServer.Credentials = New Net.NetworkCredential(emailFrom.Text, emailPass.Text)
SmtpServer.EnableSsl = True
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
mail = New MailMessage()
mail.From = New MailAddress(emailFrom.Text)
mail.To.Add(emailTo.Text)
mail.Subject = subject.Text
mail.Body = msg.Text
SmtpServer.Send(mail)
sent += 1
Catch ex As Exception
MsgBox(ex.ToString)
End Try
Loop
End Function
End Class
Feel like a challenge?
If you want to have a beginner/intermediate test you can try:
- Being able to set a custom amount of times to send the emails.
- Being able to randomly send a pre-set email a random number of times each time you press the button. Or, alternatively send emails.
- Add support for multiple email accounts.