Top

Anonymous Mailer [NL]


PHP Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Oct 17, 2009
Last Updated  Oct 17, 2009
Tags  shiny 

Introduction

This is a Anonymous Mailer

Its only Dutch but i go Translate it.

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["aan"];
$subject = $_POST["onderwerp"];
$message = $_POST["txt"];
$from = $_POST["van"];
echo ("Mailtje wordt verstuurd, even geduld... <br>");
mail("$mailto", "$subject", $message,
     "From: $from");
echo ("mail  send!");
}
else
{
    echo "<form method=\"post\" action=\"$PHP_SELF\">"; 
echo ("Tekst:<br>");
    echo "<input type=\"text\" name=\"txt\">"; 
echo "<br>";
echo "Verzendemailadres:<br>";
echo "<input type=\"text\" name=\"van\">";
echo "<br>";
echo ("Ontvanger:");
echo ("<br>");
echo "<input type=\"text\" name=\"aan\">";
echo "<br>";
echo ("Onderwerp:");
echo ("<br>");
echo "<input type=\"text\" name=\"onderwerp\">";
echo "<br>";
echo "<br>";
    echo "<input type=\"submit\" name=\"submit\" value=\"Verzend\">"; 
    echo "</form>"; 
echo ("&copyright [Your name here]");
}
?>
 
 
 
 

Comments

  (1)  RSS
Shinybot
Comments: 20
 
PHP Snippet:  Anonymous Mailer [NL]
Posted on Oct 25, 2009 7:21 am
its updated

Commenting Options

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

  
Bottom