make an automailer:
find an email script;
copy it;
loop the mailing part a certain # of times (say a few thousand);
host it on a website with smtp or pop3 support (dajoob supports php's mail function, so that'd work);
run it.
if you want a script: you can take the one i took from operator on enigmagroup...his had errors...mine doesnt....but i still left all his comments...im thinking i might put a bit at the end for giving him credit....
most email websites seem to claim it is spam, and it wont send to yahoo for some reason (not sure why, might just be a misconfiguration or something)
http://spoogly.dajoob.com/email.php?option=source
only thing that needs to be done: (no idea why im making this this simple)
change
------------------------------------------
[code]$myexpressmail = mail($to, $subject, $body, "From: $from");
if($myexpressmail)
{
echo 'Email send to ' . htmlspecialchars($to) . ' from ' . htmlspecialchars($from) . '.';
}else{
echo 'The script was unable to send the mail.
';
exit;
} [/code]
-----------------------------------------------------
to:
------------------------------------------------------
[code]for ($i=0; $i<1000; $i++)
{
$myexpressmail = mail($to, $subject, $body, "From: $from");
if($myexpressmail)
{
echo 'Email send to ' . htmlspecialchars($to) . ' from ' . htmlspecialchars($from) . '.';
}else{
echo 'The script was unable to send the mail.
';
exit;
}
}[/code]
----------------------------------------------------------
edit: and i filtered out the bad typing the first time cuz im so used to it...but now that i reread it, it's quite obnoctious....edit 2: i was fixing something i didnt like