How to collect user email adresses (elegantly)

Does anyone know how to export the user email adresses? Maybe an sql data request or is there an internal system function i can use. Inside the user admin section the email adresses are partly shortened. I had tried to copy paste the information into an excel data sheet. That was not elegant ;). 

Quote · 22 Sep 2017

Run the following query in your phpmyadmin then save the result in a spreadsheet :

 

SELECT `Email` FROM `Profiles`;

 
Additionally, you can use my Profile Exporter module to export and save selected information for members.
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 22 Sep 2017

Thank you very much. Worked perfectly. Is this the list of still active users, or are in this list also the emails from users who have already deleted themselves?

Quote · 23 Sep 2017

The query retrieves all Profiles regardless of Status. To extract only active members, use query below :

SELECT `Email` FROM `Profiles` WHERE `Status` = 'Active';

Members who delete themselves do not exist in the database anymore so no data for them can be retrieved
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 27 Sep 2017
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.