diff options
| author | Łukasz Wilenski <wooc@gazeta.pl> | 2010-09-07 18:32:01 +0000 |
|---|---|---|
| committer | Łukasz Wilenski <wooc@gazeta.pl> | 2010-09-07 18:32:01 +0000 |
| commit | 455624b2ce876bd010505da1b6c423b9a28bb978 (patch) | |
| tree | fc7b79e46de8a19e622a44a90e83d3394e1be745 /login_register.php | |
| parent | 66f768278a1b3035ee427aad093ccaade7eb7599 (diff) | |
| download | webtrees-455624b2ce876bd010505da1b6c423b9a28bb978.tar.gz webtrees-455624b2ce876bd010505da1b6c423b9a28bb978.tar.bz2 webtrees-455624b2ce876bd010505da1b6c423b9a28bb978.zip | |
fix some more problems with emails
Diffstat (limited to 'login_register.php')
| -rw-r--r-- | login_register.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/login_register.php b/login_register.php index c646185365..73f23fd0cf 100644 --- a/login_register.php +++ b/login_register.php @@ -402,7 +402,8 @@ switch ($action) { $mail_body .= i18n::translate('Hello Administrator ...') . "\r\n\r\n"; $mail_body .= i18n::translate('A prospective user has registered with webtrees at %s.', WT_SERVER_NAME.WT_SCRIPT_PATH) . "\r\n\r\n"; $mail_body .= i18n::translate('User name') . " " . $user_name . "\r\n"; - $mail_body .= i18n::translate('Real name') . " " . $user_realname . "\r\n\r\n"; + $mail_body .= i18n::translate('Real name') . " " . $user_realname . "\r\n"; + $mail_body .= i18n::translate('Email Address:') . " " . $user_email . "\r\n\r\n"; $mail_body .= i18n::translate('Comments').": " . $user_comments . "\r\n\r\n"; $mail_body .= i18n::translate('The user has been sent an e-mail with the information necessary to confirm the access request') . "\r\n\r\n"; if ($REQUIRE_ADMIN_AUTH_REGISTRATION) $mail_body .= i18n::translate('You will be informed by e-mail when this prospective user has confirmed the request. You can then complete the process by activating the user name. The new user will not be able to login until you activate the account.') . "\r\n"; |
