E-mail list extracting...

TheBlackHatBud

Registered Member
Joined
Dec 7, 2012
Messages
68
Reaction score
26
Okay, so I have more than 700 csv files containing names, addresses and e-mail addresses.

Question:

How can I extract only the e-mails from these .csv files easily?

Thanks! :D
 
I have use http://emailx.discoveryvip.com/
You can easily extract all email in one click.
:drinking2
 
The other options are:

1. Import them all into a database like mysql. Set the email address field as unique and you'd be de-duping the files at the same time.
2. Dump all the files into one directory and write a php script to cycle through the directory reading one file at a time selecting each email and writing to one new master file. This would probably run in minutes. It would take longer to write than run. But then you'd have the script to use over and over again saving huge amounts of time in the future.
 
I would suggest:

(1) Download "Npust Email list Manager" (its totally free).

(2) Run that program and choose "merge lists into a single list"
(3) Select all the files to merge
(4) Choose the output file name, and save it on your desktop
(5) Wait a few seconds for the file to write.

Then open the file in excel, copy the column containing the emails and do whatever your trying to do.

Should take you 10 mins at most.




Okay, so I have more than 700 csv files containing names, addresses and e-mail addresses.

Question:

How can I extract only the e-mails from these .csv files easily?

Thanks! :D
 
Back
Top