Good morning,
Using Excel 2003, my goal is to use excel to send a selection of text from a cell as the body of an email using Outlook, to a group of email addresses, located in column I.
I've got the whole thing to work perfectly except for getting it to send to more than one person in the "to" field.
How do I change the code so that it send to every email address located in Column I?
piece of code currently (thanks to Ron de Bruin)
With OutMail
.To = [needs to be every address in column i]
.CC = ""
.BCC = ""
.Subject = "This is the Subject line"
.HTMLBody = RangetoHTML(rng)
.Display 'or use .Send
End With
Thanks for your help
Using Excel 2003, my goal is to use excel to send a selection of text from a cell as the body of an email using Outlook, to a group of email addresses, located in column I.
I've got the whole thing to work perfectly except for getting it to send to more than one person in the "to" field.
How do I change the code so that it send to every email address located in Column I?
piece of code currently (thanks to Ron de Bruin)
With OutMail
.To = [needs to be every address in column i]
.CC = ""
.BCC = ""
.Subject = "This is the Subject line"
.HTMLBody = RangetoHTML(rng)
.Display 'or use .Send
End With
Thanks for your help