Guest Posted September 3, 2008 Posted September 3, 2008 Fairly simply question I hope.... Is it possible to obtain a list of our registered customers email addreses? Without manually going into each one. i.e preferably a text file or csv file with each one. Thanks.
germ Posted September 3, 2008 Posted September 3, 2008 Search the contributions. There are several available. I haven't tried any. One that might work: Customer Export If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
cleveland-jay Posted September 3, 2008 Posted September 3, 2008 That is pretty easy. Connect to your store's database manually. (I usually just open an ssh connection to mine and issue a 'mysql -u <myuserid>...(etc)' command. You may have a different mechanism.) The query you'd want is: select customers_email_address from customers into outfile 'myoutput'; Or you can get fancier and ask: select customers_firstname, customers_lastname, customers_email_address from customers into outfile 'myoutput'; which would tell you who the email actually belonged to. The filename in the single quotes can be whatever you want it to be. It will place it somewhere under your mysql library path. Mine end up in /var/lib/mysql/osCommerce. You can also specify what to use for a field delimiter after your filenames, but the exact syntax of that escapes me at the moment. Without specify delimiters, you get lines with fixed length fields padded with spaces. -- Jay
Recommended Posts
Archived
This topic is now archived and is closed to further replies.