S
SoDakRah
I want to read a table of users and concatenate their email addresses into
one long string to address one email instead of individual emails.
Example table A has 10 employees, 2 departments D1, D2
I use a query to open a recordset RST and read through the table extracting
each email for a selected department. strTo = RST.email
Now I want to append the next users email address to the first one.
Something like
strTo = strTo & "," & RST.email
This does not work.
Any help will be appreciated.
one long string to address one email instead of individual emails.
Example table A has 10 employees, 2 departments D1, D2
I use a query to open a recordset RST and read through the table extracting
each email for a selected department. strTo = RST.email
Now I want to append the next users email address to the first one.
Something like
strTo = strTo & "," & RST.email
This does not work.
Any help will be appreciated.