Jump to content
WebFlake
  • 0

Export Member's Emails


xtraktor

Question

hello all

would like to use mail chimp to send newsletter to my members

 how can i get all their email addresses from my invasion board board forum without having to go to my sql database and get it from the table there?

i know there is an app called "

Export Member's Emails" but can i get something free?if possible of course

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

The easiest way would be to do it through the admin panel. In 

Support > SQL Management  >  SQL Toolbox

At bottom place this code for just the email addresses

SELECT emailINTO OUTFILE '/tmp/email.log'LINES TERMINATED BY 'n'FROM members;

Or this to get the name and email information

SELECT name,emailINTO OUTFILE '/tmp/email.log'FIELDS TERMINATED BY ',' LINES TERMINATED BY 'n'FROM members;
  • Upvote 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...