xref: /webtrees/resources/views/emails/register-notify-text.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
19fa6ab69SGreg Roach<?php
29fa6ab69SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
69fa6ab69SGreg Roachuse Fisharebest\Webtrees\I18N;
77c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
87c2c99faSGreg Roach
97c2c99faSGreg Roach/**
107c2c99faSGreg Roach * @var string        $base_url
117c2c99faSGreg Roach * @var string        $comments
127c2c99faSGreg Roach * @var Tree|null     $tree
137c2c99faSGreg Roach * @var UserInterface $user
147c2c99faSGreg Roach */
159fa6ab69SGreg Roach
169fa6ab69SGreg Roach?>
17dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?>
18dd6b2bfcSGreg Roach
199fa6ab69SGreg Roach<?= /* I18N: %s is a server name/URL */
209fa6ab69SGreg RoachI18N::translate('A prospective user has registered with webtrees at %s.', $base_url) ?>
21dd6b2bfcSGreg Roach
22c65e00b4SGreg Roach<?= I18N::translate('Username') ?> - <?= e($user->userName()) ?>
234cf33693Smrqd9
24e5a6b4d4SGreg Roach<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?>
254cf33693Smrqd9
26e5a6b4d4SGreg Roach<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?>
274cf33693Smrqd9
28dd6b2bfcSGreg Roach<?= I18N::translate('Comments') ?> - <?= e($comments) ?>
294cf33693Smrqd9
309fa6ab69SGreg Roach<?= I18N::translate('Tree') ?> - <?= e($tree ? $tree->name() : '') ?>
31dd6b2bfcSGreg Roach
32dd6b2bfcSGreg Roach<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?>
33dd6b2bfcSGreg Roach
34dd6b2bfcSGreg Roach<?= I18N::translate('You will be informed by email when this prospective user has confirmed the request. You can then complete the process by activating the username. The new user will not be able to sign in until you activate the account.') ?>
35