Help me out in this error

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
suresh981
Forum Newbie
Posts: 1
Joined: Wed Sep 02, 2009 5:17 am

Help me out in this error

Post by suresh981 »

I am using mail function in my program. It is telling this error

PHP Warning: mail() [<a href='function.mail'>function.mail</a>]: SMTP server response: 550-Message rejected because (god-PC) [122.164.105.188]:50485 is blacklisted at
550 rbl.davetha.com see Blocked - see http://psbl.surriel.com/listing?ip=122.164.105.188 in

Program is:"
<?php
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: suresh981@yahoo.com';
//mail(to,subject,message,headers)
mail('suresh981@gmail.com', 'Nothing', 'HI',$headers);
?>
" program name is surmail.php error on line 6

You might say that get into the site and remove the spam filter I had done that also by
getting into the below site.
http://psbl.surriel.com/listing?ip=122.164.105.188

Important is that I am sending it from Windows Server.

Regards,
R. Suresh
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: Help me out in this error

Post by Benjamin »

:arrow: Moved to PHP - Code
Post Reply