Quote:
Originally Posted by kontrabass
3rd! Please, an update? This hack is invaluable to me! 
|
I got this running on 3.0.3. IIRC, what you need to do is open mail.php and look for this:
PHP Code:
function Mail($toemail, $subject, $message, $headers, $fromemail, $minusf = false)
{
if ($minusf)
{
$this->success = @mail($toemail, $subject, $message, trim($headers), "-f $fromemail");
}
else
{
$this->success = @mail($toemail, $subject, $message, trim($headers));
}
}
And change it to this:
PHP Code:
function Mail($toemail, $subject, $message, $headers, $fromemail, $minusf = false)
{
if ($minusf)
{
$this->success = @mail($toemail, $subject, $message, trim($headers), "-f subscriber_notify@yourdomain.com");
}
else
{
$this->success = @mail($toemail, $subject, $message, trim($headers), "-f subscriber_notify@yourdomain.com");
}
}