xref: /webtrees/resources/views/emails/approve-user-text.phtml (revision 81b729d3a9a6e0a0e8b96285d1ad7955d2d0c659)
1<?php
2
3use Fisharebest\Webtrees\Contracts\UserInterface;
4use Fisharebest\Webtrees\I18N;
5
6/**
7 * @var string        $base_url
8 * @var UserInterface $user
9 */
10
11?>
12<?= I18N::translate('Hello %s…', $user->realName()) ?>
13
14<?= I18N::translate('The administrator at the webtrees site %s has approved your application for an account. You may now sign in by accessing the following link: %s', $base_url, $base_url) ?>
15