Menu

#3 Coding error?

open
nobody
None
5
2011-11-09
2011-11-09
keith
No

Lines 29-31 of commands.inc.php are as follows:
$this->Mail->Mailer = "smtp";
} else {
$this->Mail->Mailer = "mail";
I believe they should be:
$mailer->Mailer = "smtp";
} else {
$mailer->Mailer = "mail";
since the use of $this is invalid in the context of function sendMail

Discussion


Log in to post a comment.