The addRecipients use push_array but it does not work. What am I doing wrong here??
In class.emailer.php
class Emailer { public $sender; public $recipien
in file "class.emailer.php" just do
public $recipients = array();
instead of just the kinda naked
public $recipients;
That's all, and as a sur-plus, you're free to fill up your constructors as you desire. - What do you think about that?
Regards, M.