Hi Guys - I've been looking through these forums all morning and can't figure this out. All I want to do is send this email to the complete list of email addresses that comes out of my query, but I can only get it to the first one. This is what I've got:
Dim EmailAddress As ADODB.Recordset
...
SelectString="Select Email From ..."
EmailAddress.Open SelectString
strCC = EmailAddress("Email"
EmailAddress.close
The results from the query bring up a few addresses. How do I get all of them? Thanks!
Dim EmailAddress As ADODB.Recordset
...
SelectString="Select Email From ..."
EmailAddress.Open SelectString
strCC = EmailAddress("Email"
EmailAddress.close
The results from the query bring up a few addresses. How do I get all of them? Thanks!