Quote:
Originally Posted by kebo
Jus thinking outloud here......if someone legitimately owes you money, is it considered spamming if you simply ask him for it........1000 times a day?
Also is it illeagle to have a 500kB signature file that accompanies each email?
Also is it illeagle to have 50 different email address each with a 500kB signature file to request payment from 1000 times daily?
just a thought.
kevin
|

This is good stuff. I think you are right. You could have a php script do this.
I threw this together. Don't know if it is exactly what you want, but hey, it might be fun to play with. And it randomized the from addresses.
PHP Code:
<?
function spam_mail($to, $subject, $message, $mailnum) {
global $numon;
$message2 = "
<html>
<head>
<title>".$subject."</title>
</head>
<body>
<p>
".$message."
</p>
</body>
</html>
";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ThePersonWhoWantsYourMoney <".$from.">\r\n";
if (empty($to)) {
return;
} else {
for ($i = 1; $i <= $mailnum; $i++) {
srand(microtime() * 1000000000000);
for($i2 = 0; $i2 < 2; $i2++) {
$from_rnd = array_merge(range('a','z'), range('A','Z'), range(0,9));
$rnd = array_rand($from_rnd, 5);
$from_temp[$i2] = "";
for($i3=0;$i3<=4;$i3++){
$from_temp[$i2] .= $from_rnd[$rnd[$i3]];
}
}
$from = $from_temp[0]."@".$from_temp[1].".com";
$subject = $numon."-".$i;
mail($to, $subject, $message2, $headers);
}
}
}
$message = "
Hello Mother Fucker,<br>
<br>
Give me my money you no good piece of shit. If you don't I'll (insert random bad things here)<br>
<br>
Your New Biggest Enemy,<br>
Me
";
$sendsperscript = 50;
$repeatnum = 30;
if (!isset($numon)) {
$numon = 1;
} else {
$numon = $_GET["numon"];
}
spam_mail("thatpunk@his-email.com", "", $message, $sendsperscript);
if ($numon < $repeatnum) {
$numon++;
header ("location:".$PHP_SELF."?numon=".$numon."");
}
?>
This would send 1500 emails to the same address, all from 1500 randomized different return addresses. lol
At least, it should. I haven't tested it.
Herk