i am using the below code to open and email and add the recipient based off cell values. I have been working all day to try to find a way to open 7 of the same emails but have them addressed to different people with one macro.
any tips?
thanks in advance!
Sub Rectangle1_Click()
Sub Mail()
Dim OutlookApp As Object
Dim Mess As Object, Recip As String
Recip = [B8].Value
Set OutlookApp = CreateObject("Outlook.Application")
Set Mess = OutlookApp.CreateItem(olMailItem)
With Mess
.Subject = [A1]
.Body = [A2]
.Recipients.Add Recip
.display
End With
End Sub
any tips?
thanks in advance!
Sub Rectangle1_Click()
Sub Mail()
Dim OutlookApp As Object
Dim Mess As Object, Recip As String
Recip = [B8].Value
Set OutlookApp = CreateObject("Outlook.Application")
Set Mess = OutlookApp.CreateItem(olMailItem)
With Mess
.Subject = [A1]
.Body = [A2]
.Recipients.Add Recip
.display
End With
End Sub