So my webhost changed to Apache 2, and did some other changed to the SMTP. Now mail scripts that send email from PHP do not properly display the "from", instead they display some default email address for our account.
So I use this, and put in some yahoo.com address, it works just fine:
mail ("me@yahoo.com","test subj","test body","me@yahoo.com");
I use this, and it works fine:
mail ("me@mydomain.com","test subj","test body","me@yahoo.com");
I use this, and it displays a strange default as the "from" email. It looks like: "username@box210.webhostdomain.com"
mail ("me@yahoo.com","test subj","test body","me@mydomain.com");
Any idea how to fix this?