Do you have a primary key in the forum table and an associated foreign key in the users table?
If so, you can do something like:
$id = $row_Forum['id']; //this would be the primary key field of forum
SELECT emailcolumn FROM usertable WHERE userid = $id;
You can do it that way, or you can select it in your main query like
SELECT forumtable.*, usertable.emailcolumn where blah and blah and forumtable.id = usertable.userid
Hopefully, this will give you the idea on what you need or can do.