lostInTransit
lostInTransit

Reputation: 71027

How can I change the default sender address of my hosting server?

I use the php::mail() function in my scripts to send out emails from the server. While I can change the From header, the sender still shows as a default address from the hosting server ([email protected])

Where in the cpanel settings can I change this address?

Thanks.

Upvotes: 0

Views: 1065

Answers (1)

ThiefMaster
ThiefMaster

Reputation: 318568

Try using the fifth mail() argument: '-f [email protected]'

Upvotes: 1

Related Questions