diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyStreet.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm index 7c51eddd1..5c2aa2be1 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm @@ -121,7 +121,7 @@ sub _email_to_body { foreach (@data) { chomp; my ($d, $b) = split /\|/; - if ($d eq $domain) { + if ($d eq $domain || $d eq $email) { $body = $b; last; } |