email multiple records with multiple attachments in single mail

newbielearning

New Member
Joined
May 4, 2018
Messages
2
Hello Everyone,

i am trying to send emails to recipients with attachments but one recipient has multiple records and will have multiple attachments and i want macro to send just one mail consolidating all the rows and attachments.
So far, the macro is able to send single email for every row. i still can figure out how to add attachments since i have paths stored in cells. the code fails at adding attachments as well.

Colmun 7 has client names
Column 8 has email addresses
Column 9 has attachments(with full paths)

I want 1 email per client with multiple attachments going through the list.

Code:
Dim olapp As Outlook.Application
Dim olmail As Outlook.MailItem
Dim olinsp As Outlook.Inspector
Dim x As Range
Dim attach As Outlook.Attachment



Application.ScreenUpdating = False
Application.DisplayAlerts = False

Set olapp = Outlook.Application

For Each x In ActiveSheet.Columns(8).Cells
attach = ActiveSheet.Range(x, 9).Value
Set olmail = olapp.CreateItem(olMailItem)

With olmail

.BodyFormat = olFormatHTML
.To = ActiveSheet.Range(x, 8).Value
.Subject = "Loan Dues"
.Attachments.Add "attach"
.Display

End With
Next x
End Sub


Any help is appreciated.

tks
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
OK, updating my post. i have got attachment part working. but its single mail per row per attachment.
How do i consolidate attachments and mail for every unique recipient?

Thks.

Hello Everyone,

i am trying to send emails to recipients with attachments but one recipient has multiple records and will have multiple attachments and i want macro to send just one mail consolidating all the rows and attachments.
So far, the macro is able to send single email for every row. i still can figure out how to add attachments since i have paths stored in cells. the code fails at adding attachments as well.

Colmun 7 has client names
Column 8 has email addresses
Column 9 has attachments(with full paths)

I want 1 email per client with multiple attachments going through the list.

Code:
Dim olapp As Outlook.Application
Dim olmail As Outlook.MailItem
Dim olinsp As Outlook.Inspector
Dim x As Range
Dim attach As Outlook.Attachment



Application.ScreenUpdating = False
Application.DisplayAlerts = False

Set olapp = Outlook.Application

For Each x In ActiveSheet.Columns(8).Cells
attach = ActiveSheet.Range(x, 9).Value
Set olmail = olapp.CreateItem(olMailItem)

With olmail

.BodyFormat = olFormatHTML
.To = ActiveSheet.Range(x, 8).Value
.Subject = "Loan Dues"
.Attachments.Add "attach"
.Display

End With
Next x
End Sub


Any help is appreciated.

tks
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,603
Members
449,089
Latest member
Motoracer88

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