Email attachment to range loop

GDunn

Board Regular
Joined
Mar 24, 2009
Messages
51
Hi,
The following code will send an email to the MailAdd listed in range("L9"), using the file name created strPath & strFile which is listed in range ("M9")

I would like to loop and send an email to each of the MailAdd in range ("L9:L25"), using the file names in range("M9:M25")

Is this possible? Any help would be much appreciated.

Sub SendEmail2() 'test
Dim oLookApp As Outlook.Application
Dim oLookMail As Outlook.MailItem
Dim MailAdd As String
Set oLookApp = New Outlook.Application
Set oLookMail = oLookApp.CreateItem(olMailItem)
MailAdd = Worksheets("Data").Range("L9:L25").Value
strPath = "G:\Sales\Sales Support\Sales and Investment Tracker\Corp Super Process\"
strFile = Worksheets("Data").Range("M9:M25").Value
With oLookMail

.To = MailAdd
.Subject = "Test email"
.Body = "Please find attached Weekly Tracker detail"
.Attachments.Add strPath & strFile
.Send

End With
End Sub
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
I don't have Outlook installed on my home computer, so I haven't tested this out, but this should work.
Code:
Option Explicit

Sub SendEmail2()    'test
    Dim oLookApp                   As Outlook.Application
    Dim oLookMail                  As Outlook.MailItem
    Dim MailAdd                    As String
    Dim strPath                    As String
    Dim strFile                    As String
    Dim i                          As Long

    Set oLookApp = New Outlook.Application
    For i = 9 To 25    'adjust range as needed in future
        Set oLookMail = oLookApp.CreateItem(olMailItem)
        MailAdd = Worksheets("Data").Range("L" & i).Value
        strPath = "G:\Sales\Sales Support\Sales and Investment Tracker\Corp Super Process\"
        strFile = Worksheets("Data").Range("M" & i).Value
        With oLookMail

            .To = MailAdd
            .Subject = "Test email"
            .Body = "Please find attached Weekly Tracker detail"
            .Attachments.Add strPath & strFile
            .Send
        End With
    Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,568
Messages
6,131,462
Members
449,652
Latest member
ylsteve

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top