Notification: send an email when a notification is created

This commit is contained in:
2022-01-04 22:35:23 +01:00
parent 4ef024516c
commit 6f561f57a6
5 changed files with 171 additions and 1 deletions

View File

@@ -49,3 +49,22 @@ services:
# set the 'lazy' option to TRUE to only instantiate listeners when they are used
lazy: true
method: 'onEditNotificationComment'
Chill\MainBundle\Notification\Email\NotificationMailer:
autowire: true
autoconfigure: true
tags:
-
name: 'doctrine.orm.entity_listener'
event: 'postPersist'
entity: 'Chill\MainBundle\Entity\Notification'
# set the 'lazy' option to TRUE to only instantiate listeners when they are used
lazy: true
method: 'postPersistNotification'
-
name: 'doctrine.orm.entity_listener'
event: 'postPersist'
entity: 'Chill\MainBundle\Entity\NotificationComment'
# set the 'lazy' option to TRUE to only instantiate listeners when they are used
lazy: true
method: 'postPersistComment'