How to hide X-PHP-Script header using PHP mail?

header, php, sendmail

Solution

Try overwriting it to null by adding it as a header:

$headers = 'X-PHP-Script: ';
mail($to, $subject, $message, $headers);

Alternative, you could edit the contents of the header as explained by this tutorial.

Problem

I run a PHP script that sends mails. In header there is an information about script's path. Is there a way to hide it? Is there a way to hide or change the name of a domain from that I send a mail?

Original source