Smtp 533

P

Pyro

Guest
Warning: mail() [function.mail]: SMTP server response: 553 We do not relay non-local mail, sorry. in C:\xampp\htdocs\php\ddr_maniacs\index.php on line 19

ok, ive asked around alot... and i have goten no answers, but i saw you guys and thought u might be able to help.... im using a simple simple simple scipt:
PHP:
$to      = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
   'Reply-To: [email protected]' . "\r\n" .
   'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

and yes, i copyed it from php.ner :p but i cant get it to work, no matter what i do i get this error
php5.1.1 said:
Warning: mail() [function.mail]: SMTP server response: 553 We do not relay non-local mail, sorry. in C:\xampp\htdocs\php\ddr_maniacs\index.php on line 19
what should i do?
 
Back
Top