Quick Search:
 
 PHP Code: Fake email addresses Jump to:  
Category: >> PHP Code >> Fake email addresses  

<< lastnext >>

Snippet Name: Fake email addresses

Description: Generates lists of fake email addresses. Can be used as a spambot trap to poison a spammer's database with false email addresses.

Also see:
» Send iCal Email Meeting Requests using...
» Email attachments with PHP mail()
» Email with attachments class

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
// maximum emails to generate on each page
$maxemails = 50;
 
$tld = ARRAY(".com",".com",".biz",".info",".com.au",".co.uk",".sg",".cn",".fr",".de",".org",".gov",".net",".no");
SLEEP(2);
 
SRAND ((double) MICROTIME() * 1000000);
FOR ($i = 1; $i <= $maxemails; $i++) {
        $nextmail = "";
        $rnd = RAND(5,12);
        FOR ($a = 1; $a <= $rnd; $a++) {
                $tmp = RAND(97, 122);
                $nextmail .= CHR($tmp);
        }
        $fornavn = $nextmail;
        $nextmail .= "@";
        $rnd = RAND(7,12);
        FOR ($a = 1; $a <= $rnd; $a++) {
                $tmp = RAND(97, 122);
                $nextmail .= CHR($tmp);
        }
        $rnd = RAND(1,COUNT($tld));
        $nextmail .= $tld[$rnd];
        ECHO "<a href=\"mailto:$nextmail\">".$nextmail."</a><br>\n";
}
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org