Following is how I am using the php mail function to send emails to registered users in my website:
mail($email, $subject, $message,'From: MySite <hello@mysite.com>', "-f hello@mysite.com");
The problem is that the recipients are getting 'From hello@mysite.com via eigbox.net'
How can I remove that eigbox.net? I searched on google and many are saying that you cannot remove it and some are saying that I should have that '-f hello@mysite.com', which as you can see I have but still it doesn't work. I even contacted my webhost but they were not very helpful.
Please let me know if there is anyway I can remove that and thank you very much.