aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perllib/FixMyStreet/Cobrand/Buckinghamshire.pm2
-rw-r--r--t/cobrand/bucks.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm
index 9b4445460..b3c8350cf 100644
--- a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm
+++ b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm
@@ -101,7 +101,7 @@ sub munge_sendreport_params {
# service at the point we're sending the report by email.
my $site_code = $row->get_extra_field_value('site_code') || $self->lookup_site_code($row, 10);
if ($site_code) {
- my $e = join('', 'internaltfb', '@', $self->admin_user_domain);
+ my $e = join('', 'crmbusinesssupport', '@', $self->admin_user_domain);
push @{$hdrs->{To}}, [ $e, 'TfB' ];
}
}
diff --git a/t/cobrand/bucks.t b/t/cobrand/bucks.t
index 1dee8b47e..882de8179 100644
--- a/t/cobrand/bucks.t
+++ b/t/cobrand/bucks.t
@@ -32,7 +32,7 @@ $mech->create_problems_for_body(1, $body->id, 'On Road', {
subtest 'flytipping on road sent to extra email' => sub {
FixMyStreet::Script::Reports::send();
my $email = $mech->get_email;
- my $tfb = join('', 'internaltfb', '@', 'buckscc.gov.uk');
+ my $tfb = join('', 'crmbusinesssupport', '@', 'buckscc.gov.uk');
is $email->header('To'), '"Buckinghamshire" <flytipping@example.org>, "TfB" <' . $tfb . '>';
};