When someone subscribes to my mail list, they receive an email no problem. But the FROM address contains details of my host AS WELL as the email I have specified;
FROM: nobody@my.host.details.co.uk; on behalf of; My Name[noreply@mydomain.co.uk]
My host has said that I need to change something like :
mail($to, $subject, $message, $header)
to:
mail($to, $subject, $message, $header, "-f user@domain.com")
where user@domain.com is the address I want replies and bounced e-mail to go to - so that will be bounce@mydomain.co.uk
Question is, where do I make these changes? I have searched loads of files to try to find where I need to make the change, but have so far found nothing.
Any ideas?