Top

Anonymous Mailer [EN}


PHP Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.0 (of 1 scores)
Date Added  Oct 25, 2009
Last Updated  Oct 26, 2009

Introduction

This is the English Anonymous Mailer

Translated by Jovix :D

Grab the Code

<html>
<head>
<title>Anonymous Mailer! V1.0</title>
</head>
</html>
<?PHP
echo ("Anonymous Mailer!<br><br>");
If (isset($_POST['submit']))
{
$mailto = $_POST["to"];
$subject = $_POST["subject"];
$message = $_POST["txt"];
$from = $_POST["from"];
echo ("Mail Successful send. <br>");
mail("$mailto", "$subject", $message,
     "From: $from");
echo ("mail  send!");
}
else
{
    echo "<form method=\"post\" action=\"$PHP_SELF\">"; 
echo ("Text:<br>");
    echo "<input type=\"text\" name=\"txt\">"; 
echo "<br>";
echo "Your e-mail:<br>";
echo "<input type=\"text\" name=\"from\">";
echo "<br>";
echo ("To:");
echo ("<br>");
echo "<input type=\"text\" name=\"to\">";
echo "<br>";
echo ("Subject:");
echo ("<br>");
echo "<input type=\"text\" name=\"subject\">";
echo "<br>";
echo "<br>";
    echo "<input type=\"submit\" name=\"submit\" value=\"Send\">"; 
    echo "</form>"; 
echo ("&copyright [Your name here]");
}
?>

Comments

  (8)  RSS
Purcell
Comments: 37
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 25, 2009 2:39 pm
mIRC Code ?
sunslayer
Comments: 266
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 25, 2009 3:20 pm
rofl
Purcell
Comments: 37
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 26, 2009 2:51 pm
Thanks for edit ;)
Hawkee
Comments: 1,039
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 27, 2009 12:33 am
This is very dangerous to upload to any web server. It allows spammers to use your server to send thousands of spam emails. In fact most programmers strive to avoid this functionality in their contact forms as it is a security hazard.
Shinybot
Comments: 20
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 27, 2009 2:53 pm
i know

i have it on mailer24.html No one finds it on my domain :D
Hawkee
Comments: 1,039
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Oct 27, 2009 7:58 pm
I'm a little concerned about your intentions with this. Why would you want to send an anonymous email in the first place?
A^1^T^E^A^M
Comments: 27
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Nov 3, 2009 3:38 pm
I have the same question like Hawkee. There is no needed to send anonymous emails, expect if you want to spam which is illegal.

And yea, someone can come to your mailer24.html with simple scan of your web archives.
Cracker200
Comments: 257
 
PHP Snippet:  Anonymous Mailer [EN}
Posted on Nov 6, 2009 12:28 am
LMAO!

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom