so here is a basic outline...this will determine how many emails there are in column 1 of the active sheet (sheet1)....it will then loop through each email address and go into the sendemail sub and "pass" it the email to name....you will have to come up with your email name....what you want the subject to be...and what goes in the body and the SMTP server....then it comes back to the main sub and waits for the time you requested....currently it's 12 second....you can change it 120 for 2 minutes....and it will continue until the last email name....I would suggest you practice this with just your name in the email list so if it doesn't work right you would send out a bunch of weird emails....good luck....
Public Sub SendEmails()
Dim LastRow As Integer, x As Integer
LastRow = Cells(65000, 1).End(xlUp).Row
For x = 1 To LastRow
EmailTo = Cells(x, 1).Value
SendEmail EmailTo
newMinute = Minute(Now())
newSecond = Second(Now()) + 12
waitTime = TimeSerial(newHour, newMinute, newSecond)
Application.Wait waitTime
Next
End Sub
Sub SendEmail(ToName)
Dim EmailTo As String, MessageBody As String, SubjectLine As String
Dim objmessage As Object
Dim i As Integer
Set objmessage = CreateObject("CDO.Message")
objmessage.Subject = "Testing stuff"
objmessage.from = "ENTER YOUR EMAIL ADDRESS HERE"
objmessage.bcc = ""
objmessage.To = ToName
'objmessage.AddAttachment SendFile
objmessage.Subject = ""
objmessage.TextBody = "PUT TO INFOMATION FOR THE BODY OF THE EMAIL HERE"
objmessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objmessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "ENTER YOUR SMTP SERVER HERE"
objmessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
objmessage.Configuration.Fields.Update
objmessage.Send
End Sub
Bookmarks