A new problem has cropped up with some of my php scripts. I have been using them to send email based on a form, both to the form owner as well as the submitter.
Starting a few days ago (after a server "upgrade"), any email that was supposed to go outside my domain started failing. The email is sent to the form owner fine (that is within the domain), but any email sent outside the domain gets bounced (I get a "unrouteable mail domain" error. My server admins have no idea why this started happening.
Here are the relavent parts of my script:
$email_header_conf = "From: formowner@mydomain.com\n"
. "Reply-To: formowner@mydomain.com\n";
mail("$Email", "Request - $Patient_Name", $body_conf_email, "$email_header_conf");
Do you think this is a PHP problem? Or a server/permissions/mail problem?
Thanks for the help.
-Sam