Hi @never,
There is no any tool to get emails by usergroup in wpForo. If you need to get emails of a certain usergroup you should manipulate in database. Login to your Hosting Service cPanel, open the phpMyAdmin Database manager, find your website database and go to SQL Tab. Here you should execute this SQL:
SELECT `user_email` FROM `wp_users` u, `wp_wpforo_profiles` p WHERE u.ID = p.userid AND p.groupid = 3
First, make sure your table prefix is wp_ , if not just change it in SQL command
Then find the usergroup ID you need in Dashboard > Forums > Usergroups admin page. I inserted 3 in the SQL, you can change it whatever you need.
To export those emails use the Export button below or contact to your hosting support for further help.