summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwhineatnews.pl3
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}}) {