Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

eMail to multiple receipients using table

Status
Not open for further replies.
Not sure but what I did was create a group in lotus notes and then refer to the group when I ran my code. That worked.


Fred
 
I would write a loop that goes through all the ID numbers you want to send an email to, and creates a string like this:

StrEmail = "email1; email2; email3...."

And then in your message creation use .To = StrEmail

This may not be the most efficient way, but it beats looping through the whole email send for each address...

Please post when you get your solution, email automation is one of my favorite things in Access.

Good Luck,

Alex

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top