I don't use Outlook Express, but I do loop through my recordset and
gather multiple email addresses to be used.
Dim strCC as String
Do While Not rst.EOF
strCC = strCC & rst![eMail] & "; "
rst.MoveNext
Loop
You should be able to use strCC as your recipient list.
Just another thought.