Hi All,
I want send the a spreadsheet to several email participants. Currently I set the macro to send to just one person how can I build the macro to span the entire list.
With OutMail
.to = Range("I2").Text
.CC = Range("J2").Text
.BCC = ""
.Subject = Range("L2").Value
.Body = "Hi there"...