I'm using VBA to send multiple emails. I currently have only one To: address in column "AF" and only one CC: address from "AI". I would like to add another address to both To: and CC: Below is how the code is set up.
VBA Code:
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.SentOnBehalfOfName = "Somebody@abc.com"
.From = "Somebody@abc.com"
.to = cell.Value & AK
.CC = Cells(cell.Row, "AI" & "AL").Value
.Subject = "FY24 CACI Annual Government Property Inventory Request " & Cells(cell.Row, "K").Value & "\" & Cells(cell.Row, "M").Value & " Program " & Cells(cell.Row, "A").Value
.HTMLBody = strbody & "<br>" & .HTMLBody
Last edited by a moderator: