diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Zurich.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Zurich.pm b/perllib/FixMyStreet/Cobrand/Zurich.pm index c7b2f534f..ec65ec8f0 100644 --- a/perllib/FixMyStreet/Cobrand/Zurich.pm +++ b/perllib/FixMyStreet/Cobrand/Zurich.pm @@ -406,6 +406,8 @@ sub admin_report_edit { sub _admin_send_email { my ( $c, $template, $problem ) = @_; + return unless $problem->extra && $problem->extra->{email_confirmed}; + my $to = $problem->name ? [ $problem->user->email, $problem->name ] : $problem->user->email; |