need to edit email list any good programs?

amdoch

BANNED
Joined
Nov 21, 2008
Messages
113
Reaction score
53
Yeah so i have this 2k unqiue email list that i am trying to edit but i am not to sure what to use =/

I need to put quote# (random number) in front of all the email addresses. Any ideas?
 
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
 
not even going to lie to you that got to confusing for me :P
 
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

Thats definitely a nifty piece of code, and 100 million 'eh? I'd love to get my hands on that one.. lol.

Cheers!!
 
Back
Top