xtraktor Posted October 19, 2013 Share Posted October 19, 2013 hello allwould 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 More sharing options...
0 Lock Down Posted October 19, 2013 Share Posted October 19, 2013 The easiest way would be to do it through the admin panel. In Support > SQL Management > SQL ToolboxAt bottom place this code for just the email addressesSELECT emailINTO OUTFILE '/tmp/email.log'LINES TERMINATED BY 'n'FROM members;Or this to get the name and email informationSELECT name,emailINTO OUTFILE '/tmp/email.log'FIELDS TERMINATED BY ',' LINES TERMINATED BY 'n'FROM members; 1 Link to comment Share on other sites More sharing options...
0 xtraktor Posted October 19, 2013 Author Share Posted October 19, 2013 thanks!ill try thiseven though I'm expecting next big version of ip board to natively support mail chimp! Link to comment Share on other sites More sharing options...
0 Lock Down Posted October 19, 2013 Share Posted October 19, 2013 You are welcome. Link to comment Share on other sites More sharing options...
0 Verified Posted October 19, 2013 Share Posted October 19, 2013 The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.If you have other questions, please open a new topic. Link to comment Share on other sites More sharing options...
Question
xtraktor
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