Hey i wanted to share my email bomber to see if it works ;/ or not if it doesn't please post that it doesnt.Code:<?php $email_list = file("Your Current Email List"); $total_emails = count($email_list); for ($counter=0; $counter<$total_emails; $counter++) { $email_list[$counter] = trim($email_list[$counter]); } $to = implode(",",$email_list); $subject = "You fucking suck ;D"; //<-- Fill this in with the subject. E.g: "Domo's Email Bomber! Beta Test" $message = "Your Fucking Gay ;D"; //<-- Put you're e-mail content here. $from = ""; //Put who's it from. E.g "noreply@Gaiaonline.com" if ( mail($to,$from, $subject,$message) ) { echo "The email has been sent!"; } else { echo "The email has failed!"; } ?>
please contact if this also has wrong coding ;/
;D ~BETA TEST!~
Results 1 to 11 of 11
Thread: [Php]Email Bomber!
- 16 Jan. 2010 10:08pm #1
[Php]Email Bomber!
- 16 Jan. 2010 10:25pm #2
- 16 Jan. 2010 10:50pm #3
- 19 Jan. 2010 04:12am #4
Probably the quickest way to get your site deleted on any public host. Doing it on your local host is probably the quickest way to get caught.
You probably can't use it to make a lot of money (via spam marketing), but you can surely use it to piss someone off. ;D
I threatened a friend of mine before with something like this. Jokingly, but this would have been the method used. I have a nice little key on my keyboard that I can set to do anything (a custom key designed for custom commands). I told him I'd set it to spam his inbox with gay porn. XD
Oh, this would be a spammer (the OP is more of a newsletter):
PHP Code:<?php
for ($x = 0; $x < 100; ++$x)
mail("yousuck@mailinator.com", "You suck!", "I hate you. Enjoy your gay porn. [image]");
?>
- 19 Jan. 2010 04:33am #5
- 19 Jan. 2010 06:09am #6
I love how people give you so much credit.
PHP - Email Multiple Recipients.
- 19 Jan. 2010 11:46am #7
- 19 Jan. 2010 11:09pm #8
- 19 Jan. 2010 11:38pm #9
- 20 Jan. 2010 02:00am #10wtf no mine is diffrent than that one
- 20 Jan. 2010 02:03am #11The one Essence Posted.
PHP Code:<?php
// read the list of emails from the file.
$email_list = file("elist.txt");
// count how many emails there are.
$total_emails = count($email_list);
// go through the list and trim off the newline character.
for ($counter=0; $counter<$total_emails; $counter++) {
$email_list[$counter] = trim($email_list[$counter]);
}
// implode the list into a single variable, put commas in, apply as $to value.
$to = implode(",",$email_list);
$subject = "My email test.";
$message = "Hello, how are you?";
if ( mail($to,$subject,$message) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>
PHP Code:<?php
$email_list = file("Your Current Email List");
$total_emails = count($email_list);
for ($counter=0; $counter<$total_emails; $counter++) {
$email_list[$counter] = trim($email_list[$counter]);
}
$to = implode(",",$email_list);
$subject = "You fucking suck ;D"; //<-- Fill this in with the subject. E.g: "Domo's Email Bomber! Beta Test"
$message = "Your Fucking Gay ;D"; //<-- Put you're e-mail content here.
$from = ""; //Put who's it from. E.g "noreply@Gaiaonline.com"
if ( mail($to,$from, $subject,$message) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>