Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions DocDB/cgi/EmailAdminister
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,10 @@ if ($Action eq "Delete") { # Delete user

my @To = ($EmailUser{$EmailUserID}{EmailAddress},$DBWebMasterEmail);
my $Subject = "DocDB account for $EmailUser{$EmailUserID}{Name} activated";
my $Body = "An administrator has made a change to your $Project DocDB account. ";
$Body .= "If you think this was done in error, ";
$Body .= "please contact $DBWebMasterEmail immediately.";
my $Body = "An administrator has approved the request for access to DocDB or ";
$Body .= "made a change (such as changing group memberships) to your $Project DocDB account. ";
$Body .= "If you think this was done in error or have questions, ";
$Body .= "please contact $DBWebMasterEmail.";
SendEmail(-body => $Body, -to => \@To, -subject => $Subject);
}
}
Expand Down