You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
411B

  1. <?php
  2. namespace domain\Producer\Producer;
  3. use domain\_\AbstractNotifier;
  4. class ProducerNotifier extends AbstractNotifier
  5. {
  6. public function sendEmailAdminNewTestimony(Producer $producer)
  7. {
  8. $this->mailer->sendAdmin(
  9. 'Nouveau témoignage de '.$producer->name,
  10. 'newProducerTestimony',
  11. [
  12. 'producer' => $producer,
  13. ]
  14. );
  15. }
  16. }