• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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