bugfix: send email only when notif created
This commit is contained in:
parent
c8bb171ea4
commit
3ae45a94c6
@ -74,8 +74,8 @@ def send_request(target, object_iri):
|
|||||||
|
|
||||||
|
|
||||||
@receiver(post_save, sender=Notification)
|
@receiver(post_save, sender=Notification)
|
||||||
def send_email_on_notification(sender, instance, **kwargs):
|
def send_email_on_notification(sender, instance, created, **kwargs):
|
||||||
if instance.summary and settings.JABBER_DEFAULT_HOST and instance.user.email:
|
if created and instance.summary and settings.JABBER_DEFAULT_HOST and instance.user.email:
|
||||||
html_message = loader.render_to_string(
|
html_message = loader.render_to_string(
|
||||||
'email.html',
|
'email.html',
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user