J
|
Jane 7/17/2008 |
Hi, str = "select UserName, UserEmail from TableName" Set rs = server.CreateObject("ADODB.Recordset") rs.open str,dbConnection while not rs.eof 'send your email here 'rs("UserName") - name of user 'rs("UserEmail") - user email wend rs.close set rs=nothing
|