• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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