diff options
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl index 1f3d19cf6..6be5f895e 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -50,10 +50,11 @@ while (@row = FetchSQLData()) { my $template = Param('whinemail'); my $urlbase = Param('urlbase'); +my $emailsuffix = Param('emailsuffix'); foreach my $email (sort (keys %bugs)) { my %substs; - $substs{'email'} = $email; + $substs{'email'} = $email . $emailsuffix; my $msg = PerformSubsts($template, \%substs); foreach my $i (@{$bugs{$email}}) { |