How to print Collection or DataTable in Email body?

Basically you have to loop through them and build the HTML code into a string as you go, like…

"<TR><TD>" + CurrentRow("SomeColumn").ToString + "</td><TD>" + CurrentRow("SomeotherColumn").ToString + "</td></tr>"