Kur lai vēl dabū e-pasta adreses? Kādu laiku redzēju sludinājumos, ka piedāvā Mass Post izsūtīšanu, bet tagad neviens nepiedāvā.
Ko varat man ieteikt?
This post has been edited by Court: 2009.03.24 11:18
Posted 2009.03.24 11:17
This post has been edited by Court: 2009.03.24 11:18
Posted 2009.03.24 12:03
function getEmail(){
$domains = array(
'inbox.lv','hotmail.com', 'gmail.com', 'apollo.lv', 'aol.com','yahoo.com','mail.com',
);
$email = '';
$chars = 'qwertyuiopoplkjhgfdsazxcvbnm1234567890';
for ($i = 0; $i <= 7; $i++){
$email .= $chars[rand(0,strlen($chars)-1)];
}
return $email . '@' . $domains[rand(0,sizeof($domains)-1)];
}
while(true){
echo getEmail();
}
Posted 2009.03.24 12:10
Kaklz, on 24.03.2009 12:03, said:
function getEmail(){
$domains = array(
'inbox.lv','hotmail.com', 'gmail.com', 'apollo.lv', 'aol.com','yahoo.com','mail.com',
);
$email = '';
$chars = 'qwertyuiopoplkjhgfdsazxcvbnm1234567890';
for ($i = 0; $i <= 7; $i++){
$email .= $chars[rand(0,strlen($chars)-1)];
}
return $email . '@' . $domains[rand(0,sizeof($domains)-1)];
}
while(true){
echo getEmail();
}
Posted 2009.03.24 12:28
Posted 2009.03.24 13:15
Quote
function getEmail(){...This post has been edited by v3rb0: 2009.03.24 14:25
Posted 2009.03.24 16:40
Court, on 24.03.2009 13:08, said:
Posted 2009.03.24 18:54