ini_set("sendmail_from","me@mydomain.com");
ini_set("SMTP","mail.mydomain.com");
$subscribemail = "Thank you for subscribing to the newsletter.";
$submailheaders = "From: $lettername subscription form\n";
$submailheaders .= "Reply-To: $youremail\n";
mail ($email,$lettername." subscription",$subscribemail,$submailheaders);
from the ini part i was able to send email but now the problem is that i can send mail to yahoo, hotmail but not to me@cfl.rr.com
I am wondering if it has something to do with the extra period. All other accounts receive email.