Anyone out there who can help me with this? Saw the post below while surfing the Net. Very curious to know about the steps to be taken to set up this anon mailing facility. Please help. Thanks.
--------------------------------------------------------------------------------



Anonymous Mailer

A simple yet nice anonymous mailing system. No great features except it allows you to define your name and email.

70* downloads | 4,627 views

* comments [ Read / Post ]

--------------------------------------------------------------------------------

<?phpIf ($to_email && $message && $subject) {$to = "\"$to_name\" <$to_email>";$from = "\"$from_name\" <$from_email>";$to = str_replace("\\'", "'", $to);$from = str_replace("\\'", "'", $from);$subject = str_replace("\\'", "'", $subject);$message = str_replace("\\'", "'", $message);mail($to, $subject, $message, "From: $from\nX-Mailer: Mukul Sabharwal");echo "Mail message sent : \nTo : $to\nFrom : $from\nSubject : $subject\nMessage : $message";exit;}?><html><head><title>Anonymous Mailer</title></head><body><form action=<?php echo $PHP_SELF; ?> METHOD=POST>To (Name) : <input type=text name=to_name><br>To (Email) : <input type=text name=to_email><br>From (Name) : <input type=text name=from_name><br>From (Email) : <input type=text name=from_email><br>Subject : <input type=text name=subject><br>Message : <textarea name=message cols=60 rows=*0></textarea><br><input type=submit value=Mail></form></body></html>