When sending an email through of the accounts, the send from info in the receivers mail reads: nobody@-mainaccount-.com. Any way of setting that to the proper send from account? Thanks.
When sending an email through of the accounts, the send from info in the receivers mail reads: nobody@-mainaccount-.com. Any way of setting that to the proper send from account? Thanks.
install phpsuexe, you can use easyapache to do this aswell
also in Tweak Settings check "Prevent the user "nobody" from sending out mail to remote addresses"
that's the return path of emails sent using mail() function of php.
You want to do this serverwide, or just for a specific account/script?
Serverwide, only solution is phpsuexec.
For only one scrip, you should check the syntax for the php mail() function.
There is a fifth parameter for setting the returnpath.
mail($to,$subject,$message,$headers,-fRETURN_PATH@server.com);
(no space betweeen "-f" and the email address.)