1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2*e5a6b4d4SGreg Roach<?= I18N::translate('Hello %s…', e($user->realName())) ?> 3dd6b2bfcSGreg Roach 4*e5a6b4d4SGreg Roach<?= /* I18N: %1$s is the site URL and %2$s is an email address */I18N::translate('You (or someone claiming to be you) has requested an account at %1$s using the email address %2$s.', e(WT_BASE_URL), e($user->email())) ?> 5dd6b2bfcSGreg Roach 6dd6b2bfcSGreg Roach<?= I18N::translate('Follow this link to verify your email address.') ?> 7dd6b2bfcSGreg Roach 8*e5a6b4d4SGreg Roach<?= route('verify', ['username' => $user->userName(), 'token' => $user->getPreference('reg_hashcode'), 'ged' => $tree->name()], true) ?> 9dd6b2bfcSGreg Roach 10dd6b2bfcSGreg Roach<?= I18N::translate('If you didn’t request an account, you can just delete this message.'); 11