Ok, this is REALLY getting on my nerves! For some reason the below code will only send emails to certain email addresses. If I send it to a hotmail one, it arrives fine. If, however I send it to a forwarded one (i.e. webmaster@ace-installer.com), then it doesn't come through. I've aded $php_errormsg in there to see if any errors are reported...but nothing so far...anyone got any ideas?
$subject = "New advertiser signed up...";
//send the email...
mail("$webmaster_email", $subject, $saved,
"From: $webmaster_email\r\n"
."Reply-To: $webmaster_email\r\n"
if ($phperror_msg) { normal_error("Error: $phperror_msg" }
Thanks
Andy
$subject = "New advertiser signed up...";
//send the email...
mail("$webmaster_email", $subject, $saved,
"From: $webmaster_email\r\n"
."Reply-To: $webmaster_email\r\n"
if ($phperror_msg) { normal_error("Error: $phperror_msg" }
Thanks
Andy