Jump to content

remake mailspam script


kiffwunder

Recommended Posts

i sry i am php noob.

thats the code from the spammail
can someone change the code 4 me on that way, that i can select the sender and the receiver and there is a sendbutton on the page. so that other users can us this script on my fun page  ;D
mfg kiu

[code]<?php
$opfer = "test@test"; //Die E-Mail Adresse des Opfers
$absender = "test@test"; //Die freiwählbare Absenderadresse
$absender_name = "test@test";
$betreff = "test";

$anzahl_mails = 10;

$nachricht = "test"; //Nachricht an das Opfer

for ($i=1; $i <=$anzahl_mails; $i++) {
        if (mail($opfer,$betreff,$nachricht,"From: $absender_name <$opfer>")) {
            echo "Mail $i von $anzahl_mails:<font color=green> gesendet.</font><br>";
        } else {
            echo "Mail $i von $anzahl_mails:<font color=red> nicht gesendet.</font><br>";
        }
}
?>

[/code]
Link to comment
Share on other sites

+1 to that.  Why the hell would we write code for you to use as a spam program?

Furthermore, its insulting that you ask for someone to completely rewrite code for you, if you want to know HOW to do something, I'm sure someone could help, however, simply asking someone to write the code for you for FREE is audacious.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.