From b4ab29393eca1065d9f0b966433603d82c45b091 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 18 May 2017 16:21:44 +0100 Subject: [PATCH] Allow confirmation emails to fail without blocking the interface --- RIGS/signals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RIGS/signals.py b/RIGS/signals.py index 71263681..faf0f873 100644 --- a/RIGS/signals.py +++ b/RIGS/signals.py @@ -85,8 +85,8 @@ def send_eventauthorisation_success_email(instance): ) # Now we have both emails successfully generated, send them out - client_email.send() - mic_email.send() + client_email.send(fail_silently=True) + mic_email.send(fail_silently=True) def on_revision_commit(instances, **kwargs):