[Solved] Problems with MultiMailer PHPMailer

Hi, I am trying to send email using MultiMailer/PHPMailer, but on the send method an exception arises:

Fatal error: Call to undefined method phpmailerException::_errorMessage() in …/protected/extensions/MultiMailer/MultiMailer.php

Can someone help?

Thanks

I used JPhpMailer - you could try that.

One thing that you should check is that the classes are properly "imported" (is the import path set in the configuration, …).

There is typo in the code - line 890 in MultiMailer.php should be:


$this->setMultiError($e->errorMessage());

I’ll fix it asap.

you could use YiiMailer I have used it quite a few times

It was that. Thank you!