fix: remove user-specific greeting in registration email
The registration email no longer includes the user's name. This change reduces the potential for abuse of the service by spammers.
This commit is contained in:
parent
fbc21f45c8
commit
3529833404
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ sub send_registration_mail {
|
|||
my $reg_url = $self->url_for('reg')->to_abs->scheme('https');
|
||||
my $imprint_url = $self->url_for('impressum')->to_abs->scheme('https');
|
||||
|
||||
my $body = "Hallo, ${user}!\n\n";
|
||||
my $body = "Hallo!\n\n";
|
||||
$body .= "Mit deiner E-Mail-Adresse (${email}) wurde ein Account bei\n";
|
||||
$body .= "travelynx angelegt.\n\n";
|
||||
$body
|
||||
|
|
Loading…
Reference in a new issue