A
A
Alexander C2015-01-30 17:40:47
Parsing
Alexander C, 2015-01-30 17:40:47

Does anyone know a good email parser?

Good afternoon. I'm looking for an email parser from a list of sites. Maybe someone used Emex, ePochta and others?
Criteria:

  1. Can be paid. Of course, preferably free or with a normal crack. But I can hardly find it.
  2. To be able to collect email addresses like "[email protected]". Where "domain.ru" is the domain name, of course.
  3. At the input is a text file with domains of the form: "domain.ru". But I can remake it in links.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
J
John Freeman, 2015-05-26
@AsviS

< ?
set_time_limit(0);
$lines = file('mail.txt');
$out = array();

foreach ($lines as $line_num => $line) {
$url=file_get_contents(trim($line));
preg_match_all('/[\.\-_A-Za-z0-9][email protected][\.\-A-Za-z0-9]+
?[\.A-Za-z0-9]{2,}/', $url, $out);
echo $line.'   ';
print_r($out);
echo '

';
}
?>

S
soft4you, 2021-02-26
@soft4you

LetsExtract is the top parser now https://letsextract.com/en/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question