Export / download all users registration email addresses?

flowerpot132

Active member
Can this be done? So I want to download all users email addresses so I can send them an email. I know I can do this through the admin back end but I want to use mailchimp to send this particular email. So want to export them out of xenforo.
 
It may be easier if you just do this:
upload_2014-11-13_10-45-56.webp

Copy and paste the list to Excel and use the concatenate function to separate the email address and names.
 
Great! Thanks, that was all I was after.

So I copied and pasted that into excel which drops them into one column each on separate rows going down. Each cell contains the email address and the users name all together so have to separate the email address out manually or use this code in the column next to it and that will chuck out just the email address for you! Remember to click into the cell and then paste this code in first.

=TRIM(RIGHT(SUBSTITUTE(LEFT(A1,FIND (" ",A1&" ",FIND("@",A1))-1)," ", REPT(" ",LEN(A1))),LEN(A1)))

Got that from this website:
http://www.extendoffice.com/documents/excel/1272-excel-extract-email-address.html
 
Top Bottom