<?php
$file = "emails.txt";
$list = file($file);
$newFile = fopen("newFile.txt", w);
foreach($list as $email){
fwrite($newFile, rand()." " .$email);
}
fclose($newFile);
?>
You could write a script in php to do such small lists. I handle 100 millions lists. But all in Unix commands![]()
PHP:<?php $file = "emails.txt"; $list = file($file); $newFile = fopen("newFile.txt", w); foreach($list as $email){ fwrite($newFile, rand()." " .$email); } fclose($newFile); ?>
Ok you need to change the $file to the file name, and the new file will be newFile.txt.
Format will be 123123 [email protected]
hope helps