Friday, December 30, 2011

How to Send Anonymous Emails

1 comment

The Best way to send annoymous emails is using a free email send script.
Copy this script and paste into notepad , then save as  "mailform.php"

<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
  {
  //send email
  $to = $_REQUEST['to'] ;
  $email = $_REQUEST['email'] ;
  $subject = $_REQUEST['subject'] ;
  $message = $_REQUEST['message'] ;
  mail("to", "$subject",
  $message, "From:" . $email);
  echo "Thank you for using our mail form";
  }
else
//if "email" is not filled out, display the form
  {
  echo "<form method='post' action='mailform.php'>
  To : <input name='to' type='text' /><br />
  From: <input name='email' type='text' /><br />
  Subject: <input name='subject' type='text' /><br />
  Message:<br />
  <textarea name='message' rows='15' cols='40'>
  </textarea><br />
  <input type='submit' />
  </form>";
  }
  ?>
</body>
</html>
<br/>
Devloped by : <a href="http://hacking-spirit.blogspot.com"/>hacking-spirit.blogspot.com</a>


How to use this script :

- Go to free hosting site 000webhost.com or x10hosting.com
- Register your account for free. and choose a domain name
- Go to cPanel
- Find and click on File manager
- Now upload mailform.php to server in /publichtml directory.
- Set permissions to 777 to file(sometime needs).
- Run your selected domain name in Browser with mailform.php file as

"http://yourdomainname.comule.com/mailform.php"

now send no. of  fake emails to any of  your friends. Enjoy !! :)
Note: all this information is for educational purpose only,i will not be responsible for any misuse.

If it works ok. if not worked tell me i will help , please pass comments .

1 comment: