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
You've missed to the call the parent constructor in the child's constructor
class ExtendedEmailer extends emailer { function __construct(){ //overwriting __contruct here parent::__construct('dummy_sender@sender.com'); } }
should fix this issue.