Loop through datagridview and send results to CVS file

Submitted by hooper on
I need to be able to loop through a column containing emails which is filtered by date ranges. I want to take the emails and put them in a textbox or CSV file. This file will then be used to send a reminder email to customers. Right now I have this code but it only grabs the first email. What's wrong? For Each RW As DataGridViewRow In EmailDataGridView.Rows TextBox2.Text = RW.Cells(7).Value.ToString Next