okay so i do a mail() and get
Warning: mail() [function.mail]: SMTP server response: 550 not local host gmail.com, not a gateway in C:\xampp\xampp\htdocs\testsite\mail.php on line 7
heres the file
<?php
ini_set("SMTP","rlwatkins.com");
ini_set("sendmail_from","hunter@rlwatkins.com");
mail("huntercjcarroll@gmail.com","hello me","spamtastic","From: hunter@rlwatkins.com");
?>
what is wrong with this, how do i set it so that i can send to something other than localhost?