0

I am trying to build an Excel sheet with due dates and corresponding email addresses. When it is 10 days before the due day, ideally Excel would automatically send the corresponding person an email reminding them about the due date.

I found some VBA codes online but they can only send emails to one designated emailing address.

Please could anyone kindly point out where I should be looking at? Thanks a lot!

Pᴇʜ
  • 56,719
  • 10
  • 49
  • 73

1 Answers1

0

What I understand is that you would like to send the same email to multiple recipients if a condition is met. I assume you are able to do this on a per-person level (if not, refer to this resource), so you could simply repeat this procedure for the targeted number of recipients. Or you could also CC or BCC those other recipients, however I would suggest doing it on a personal level if time is not an issue as this adds to privacy of targeted recipients.

This post about CC and this post about BCC could help, or you could simply have a for loop for each recipient and keep your email content the same. Good luck!

Lorne
  • 181
  • 2
  • 11