Forums

Join
bbPress Support ForumsInstallationPHP Mail header mailed-by set to non textdrive hostname?

Info

PHP Mail header mailed-by set to non textdrive hostname?

  1. Hello Hello,
    I have a problem wherein I am receiving emails from my forums fine by php however there is a header :

    Mailed-by : example.myhosting-provider.com

    So, I want to change it to;

    Mailed-by : my-website.com

    How to achieve this?
    Thanks

  2. You have to pass an additional parameter to mail():

    $add = "-f my-website.com";
     mail($to, $subject, $message, $additional_headers, $add);

    http://php.net/manual/en/function.mail.php

  3. In which bbpress file?
    Which Line?

  4. You must log in to post.