• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Php Mail issue

D

dpalme

Guest
Plesk obviously has its own installation of php and the mail function is causing some problems. When it sends out an email....its sending it as anonymous@......

How do I change the default FROM address it is coming from.....
 
From Anonymous

I hope you receive an answer because I am having the exact same problem.
 
Fixed

I used the solution found here:

http://forum.swsoft.com/showthread.php?s=&threadid=45074

putenv ("QMAILUSER=USER");
putenv ("QMAILNAME=FULL_USER_NAME");
putenv ("QMAILHOST=DOMAIN");
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain;charset=us-ascii\r\n";
$headers .= "From: FULL_USER_NAME <USER@DOMAIN>";
$to="[email protected]";
$subject = "Testing email";
$body = "";
$err = mail($to, $subject, $body, $headers);

However, another thread:

http://forum.swsoft.com/showthread.php?t=50957

recommend changing \r\n to \n in headers becuase of a bug in Plesk 8.x versions so I did that and now all my outgoing emails have the correct Reply To.
 
Back
Top