165cf5706SGreg Roach<?php 265cf5706SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 57c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 665cf5706SGreg Roachuse Fisharebest\Webtrees\I18N; 765cf5706SGreg Roach 87c2c99faSGreg Roach/** 97c2c99faSGreg Roach * @var string $message 107c2c99faSGreg Roach * @var UserInterface $recipient 117c2c99faSGreg Roach * @var UserInterface $sender 127c2c99faSGreg Roach * @var string $url 137c2c99faSGreg Roach */ 147c2c99faSGreg Roach 1565cf5706SGreg Roach?> 1665cf5706SGreg Roach<div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 17dd6b2bfcSGreg Roach <p> 18315eb316SGreg Roach <?= I18N::translate('Hello %s…', '<bdi">' . e($sender->realName()) . '</bdi>') ?> 19dd6b2bfcSGreg Roach </p> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach <p> 22e5a6b4d4SGreg Roach <?= I18N::translate('You sent the following message to a webtrees user:') ?><?= e($recipient->realName()) ?> 23dd6b2bfcSGreg Roach </p> 24dd6b2bfcSGreg Roach 25dd6b2bfcSGreg Roach <hr> 26dd6b2bfcSGreg Roach 27dd6b2bfcSGreg Roach <p> 28dd6b2bfcSGreg Roach <?= nl2br(e($message), false) ?> 29dd6b2bfcSGreg Roach </p> 30dd6b2bfcSGreg Roach 31dd6b2bfcSGreg Roach <hr> 32dd6b2bfcSGreg Roach 33f18701c6SGreg Roach <?php if ($url !== '') : ?> 34dd6b2bfcSGreg Roach <p> 35dd6b2bfcSGreg Roach <?= I18N::translate('This message was sent while viewing the following URL: ') ?> 36dd6b2bfcSGreg Roach <?= e($url) ?> 37dd6b2bfcSGreg Roach </p> 38f18701c6SGreg Roach <?php endif ?> 39fd5f2920SGreg Roach</div> 40