SMTP server not setup correctly

jim.thornton

Verified User
Joined
Jan 1, 2008
Messages
334
How do I make it so that my server sends out mail and doesn't add the "Sent From" header?

Right now whenever I send out an email via a PHP script, shell or any other method, it adds a header under the "From" header in Thunderbird. The header is "Sent From: user@hostname".

I don't like this and I just want this whole header eliminated but I have no clue how to do it.

Any help is greatly appreciated.
 
That is because you are NOT using SMTP. You are using the sendmail command in the script. Change your script to use SMTP. The title of your thread is misleading. SMTP IS set up correctly. For what you want to accomplish it is your script that is not set up correctly.

or any other method

Obviously you have not tried SMTP.
 
Back
Top