Menu

#180 Email send error

open
nobody
None
5
2012-09-25
2007-09-02
Bruno
No

in the version 2.17 the fileclass\mail\phpmailer\class.phpmailer.php line 437
have the folowing code :

$params = sprintf("-oi -f %s", $this->Sender);
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header, $params);

But this function doesn't works, the mail are not send.

.... I have modified the code and now it work , i can send mail :

// $params = sprintf("-oi -f %s", $this->Sender);
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header, $this->Sender);

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.