CalumT Posted May 4, 2006 Share Posted May 4, 2006 Hey again,I'm making a fake emailer for my site, It obviously will have a note at the bottem "This is FAKE email, it was sent using....".So don't worry.I cannot get the script to work, though, the PHP for it is this:[code] <? $a=addslashes(strip_tags($_GET['a'])); if(isset($_POST['submit']) && $a == "send"){ $target=addslashes(strip_tags($_POST['target'])); $max= $_POST['237828678966342834424']; $subject =addslashes(strip_tags($_POST['subject'])); $message =addslashes(strip_tags($_POST['message'])); $totalsent = 0; $fake=addslashes(strip_tags($_POST['fake'])); $headers = 'From: ' . $fake . "\r\n" . 'Reply-To: ' . $fake; while($totalsent < $max){ mail($target, $subject, $message, $headers); $totalsent += 1; echo("Email sent!"); }}?>[/code]You can view it in context here: [a href=\"http://calum-land.com/emailer.php\" target=\"_blank\"]http://calum-land.com/emailer.php[/a], note that the amount of emails to send is [u]not[/u] activated, I just haven't added the Javascript to tell the user this yet.Can anyone help?Thanks~Calum Link to comment Share on other sites More sharing options...
ober Posted May 4, 2006 Share Posted May 4, 2006 Unless there is a really good reason for doing this, and you can PM me with such a reason, this thread is going to be and will stay closed. Link to comment Share on other sites More sharing options...
Recommended Posts