MyBB Community Forums

Full Version: Fake E-mailer Script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'v made this script which send anonymous e-mails and would like to share it.

<?PHP 

$from_name = "Steve"; 
$from_email = "[email protected]"
$to_email = "[email protected]"; 
$subject = "I need a subject"; 
$message = "Hi I like php"; 

$headers = "From: ".$from_name." <".$from_email.">\r\n"; 
$headers .= "Reply-To: ".$from_email."\r\n"; 

mail($to_email, $subject, $message, $headers, "-f".$from_email); 

echo "Mail Sent!"; 

?> 

Im just wondering is there anyway you can make it pass the Sender ID test as it seems to go to junk everytime
read a bit here
zaher1988 Wrote:read a bit here

Thanks zaher that really helps alot Smile
Could you update the script jag100?
destroyer Wrote:Could you update the script jag100?

It really nothing to do with the script ill try and see if a mail server works but at the moment this is the only thing which fully works