CakePHP 3 implementedEvents() does not fire in emailer
问题 According to documentation , I should be able to add implementedEvents directly to my mailer to seperate all my mailing logic from my codes. However, when I follow the exact examples in documentation; I see my implemented event function does not work. (not sending emails & does not log anything) Should I implement my emailer class to somewhere? If so, how should I register my emailer class? This is my mailer class: <?php namespace App\Mailer; use Cake\Mailer\Mailer; use Cake\Log\Log; /** *