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($recipient->realName()) . '</bdi>') ?> 19dd6b2bfcSGreg Roach </p> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach <p> 22fd5f2920SGreg Roach <?= /* I18N: %s is a person's name */ 235d7bcd67SGreg Roach I18N::translate('%s sent you the following message.', I18N::translate('%1$s (%2$s)', e($sender->realName()), e($sender->email()))) ?> 24dd6b2bfcSGreg Roach </p> 25dd6b2bfcSGreg Roach 26dd6b2bfcSGreg Roach <hr> 27dd6b2bfcSGreg Roach 28dd6b2bfcSGreg Roach <p> 29dd6b2bfcSGreg Roach <?= nl2br(e($message), false) ?> 30dd6b2bfcSGreg Roach </p> 31dd6b2bfcSGreg Roach 32dd6b2bfcSGreg Roach <hr> 33dd6b2bfcSGreg Roach 34f18701c6SGreg Roach <?php if ($url !== '') : ?> 35dd6b2bfcSGreg Roach <p> 36dd6b2bfcSGreg Roach <?= I18N::translate('This message was sent while viewing the following URL: ') ?> 37dd6b2bfcSGreg Roach <?= e($url) ?> 38dd6b2bfcSGreg Roach </p> 39f18701c6SGreg Roach <?php endif ?> 40fd5f2920SGreg Roach</div> 41